function borderstyle(ob){ob.style.cssText="border:2px solid #80FF00;width: 450px;"}
function clearemail(){var email=document.getElementById("email");if((email.value).indexOf("@")<1){email.value="";email.style.cssText="font-weight:bold; color:red;width: 450px;";}}
function recheckemail(){var email=document.getElementById("email");if((email.value).indexOf("@")<1){document.getElementById('email').value = 'Please Enter Your Email Address';}}


function formcheck(email)
{
  var email=document.getElementById("email");
  var myreg =/^([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,3}$/;
  if(!myreg.test(email.value))
  {
    alert("Invalid 'E-mail'");
    email.style.cssText="font-weight:bold; color:red;width: 450px;border:2px solid #80FF00;";
	return false;
  }
  else
   {
	   return true;
   }
}
