function sendMail(){
document.myForm.AllTowns.value='';
town='';
if (document.myForm.ChinoValley.checked) town+='Chino Valley, ';
if (document.myForm.Dewey.checked) town+='Dewey, ';
if (document.myForm.Humboldt.checked) town+='Humboldt, ';
if (document.myForm.Mayer.checked) town+='Mayer, ';
if (document.myForm.Prescott.checked) town+='Prescott, ';
if (document.myForm.PrescottValley.checked) town+='Prescott Valley, ';
if (town!='') town=town.substr(0,town.length-2)+'.';
if (town=='') town+='Prescott, Prescott Valley.';
document.myForm.AllTowns.value+=town;
document.myForm.ChinoValley.value='';
document.myForm.Dewey.value='';
document.myForm.Humboldt.value='';
document.myForm.Mayer.value='';
document.myForm.Prescott.value='';
document.myForm.PrescottValley.value='';

style='';
document.myForm.AllStyle.value='';
if (document.myForm.Mobile.checked) style+='Manufactured, ';
if (document.myForm.Condo.checked) style+='Condo/Townhouse, ';
if (document.myForm.One.checked) style+='One Story, ';
if (document.myForm.Two.checked) style+='Two Story, ';
if (style!='') style=style.substr(0,style.length-2)+'.';
if (style=='') style+='One Story.';
document.myForm.AllStyle.value+=style;
document.myForm.Mobile.value='';
document.myForm.Condo.value='';
document.myForm.One.value='';
document.myForm.Two.value='';

if (document.myForm.SquareFT.value=='') document.myForm.SquareFT.value+='NoMin';

if (document.myForm.MaximAge.value=='') document.myForm.MaximAge.value+='NoMax';

var str=document.myForm.EAddress.value;
var filter=/^.+@.+\..{2,3}$/;
if (filter.test(str)) {
document.myForm.submit()}

else {

update='NUpdates: Do not send New Listing EMail Alerts.';
if (document.myForm.YUpdates.checked) update='YUpdates: Please send New Listing EMail Alerts.';
var name="john"
var domain="buyerside-realty.com";
var eml=name + "@" + domain;
var subj="?subject=Request for Matching MLS Homes";
var message="Just click Send. Within 24 hours, you will receive Matching MLS Homes with photos and EMail Updates of new listings that match your search criteria.%0D%0A%0D%0ASEARCH CRITERIA...%0D%0A";
var bod="&body="+message+"AllTowns: "+town+"%0D%0A"+"AllStyle: "+style+"%0D%0A"+"MinPrice: "+document.myForm.MinPrice.value+"%0D%0A"+"MaxPrice: "+document.myForm.MaxPrice.value+"%0D%0A"+"Bedrooms: "+document.myForm.Bedrooms.value+"%0D%0A"+"Bathroom: "+document.myForm.Bathroom.value+"%0D%0A"+"SquareFT: "+document.myForm.SquareFT.value+"%0D%0A"+"MaximAge: "+document.myForm.MaximAge.value+"%0D%0A"+"GarageYN: "+document.myForm.GarageYN.value+"%0D%0A"+"MinAcres: "+document.myForm.MinAcres.value+"%0D%0A"+"%0D%0A"+"CONTACT INFORMATION..."+"%0D%0A"+"FrstName: "+document.myForm.FrstName.value+"%0D%0A"+"LastName: "+document.myForm.LastName.value+"%0D%0A"+"Comments: "+document.myForm.Comments.value+"%0D%0A"+update+"%0D%0A"+"%0D%0A"+"Thanks for completing the Search Form! Please do not make any changes to this EMail. You can modiy the data by closing this window and returning to the Search Form.";
document.location="mailto:"+eml+subj+bod;
document.location="http://buyerside-realty.com/thanks.htm";
return false;
}
}
