function email() {
   var part1 = "<input type='hidden' name='recipient' value='sales";
   var part2 = "@aaa";
   var part3 = "locksmithnewyork.com'>";
   document.write(part1 + part2 + part3)
}


function changeBox(cbox) {
box = eval(cbox);
box.checked = !box.checked;
}



function CheckForm( theform )
{
	var bMissingFields = false;
	var strFields = "";
	
	if( theform.Name.value == '' ){
		bMissingFields = true;
		strFields += "     Your Name\n";
	}
	if( theform.Email.value == '' ){
		bMissingFields = true;
		strFields += "     Your Email\n";
	}
	if( theform.Comments.value == '' ){
		bMissingFields = true;
		strFields += "     Your Comments\n";
	}
		
	if( bMissingFields ) {
		alert( "Please provide the following required field(s) before continuing:\n" + strFields );
		return false;
	}
	
	return true;
}









