function copyAndSubmit(visibleForm){
if(document.visibleForm.Email1.value.length <4)
	{alert("Please Enter Your Primary Email Address.");
	return false;}
else if(document.visibleForm.Email1.value.indexOf("@") <1)
	{alert("Not a Valid Email Address, Please Enter Again.");
	return false;}
else if(document.visibleForm.Email1.value.indexOf(".") <2)
	{alert("Not a Valid Email Address, Please Enter Again.");
	return false;}
return true;
}