function mailto(email,subject,msg){
	//%0A%0D
	msg = msg.split("<br>");
	msg = msg.join("%0A");
	msg = msg.split("<br />");
	msg = msg.join("%0A");
	
 	location.href = "mailto:"+email+"?subject="+subject+"&body="+msg;
}

var registrationVBS = "NorthStar Community Church<br />Vacation Bible School<br />Registration Form<br /><br />Child's Name:<br />Parent/Guardian Name:<br /><br />Address:<br />City:<br />State:<br />Zip:<br /><br />Home Phone:<br />Cell Phone:<br />Email:<br /><br />Child's Date of Birth:<br />Child's last completed grade:<br />Child's School:<br /><br />Medical Information:<br />(Medical or other important information we need to know, including allergies)<br /><br /><br />Emergency Contact Name:<br />Phone:                            Alt Phone:       <br /><br />Emergency Contact Name:<br />Phone:                            Alt Phone:       <br /><br />Who will pick up your child each day:<br /><br />May we have permission to photograph your child and perhaps use those photos in church publications and/promotional pieces?       YES       NO<br />T-shirt size:    S       M        L       XL<br /><br />";

function vbs_register(){
	mailto("sarah.grace.heaton@gmail.com","VBS Registration",registrationVBS);
}

var registrationWorkshop = "Workshop Registration <br /><br />You are registering for Marketplace Ministries' Job Search Workshop scheduled for Friday, June 5th from 8:30 AM to 12:30 PM at NorthStar Community Church, 116 NE 24th Street, Wilton Manors, FL 33305.  You may also call 954.564.4374 for registration.<br /><br />  Name:  <br /><br />  Address:  <br /><br />  City:  <br /><br />  ZIP:  <br /><br />  Email:  <br /><br />  Phone:  <br /><br />  Present employment status?  <br /><br />   If unemployed, how long?   <br /><br />  Current or last job title?  <br /><br />  How did you hear about the workshop?  <br /><br /><br />Thank you, we look forward to meeting you.  God bless your day!<br /><br />";

function workshop_register(){
	mailto("gary@northstarftl.org","Workshop Registration",registrationWorkshop);
}
