//** Validation**//

function checkform (form2)
{
    
  var email = form2.mail.value;
  if (email == "") {
    alert( "Please enter your Email Address" );
    form2.mail.focus();
    return false ;
  }
  
  if (!email.match(/^[\w\.\-]+@([\w\-]+\.)+[a-zA-Z]+$/))
	{
		alert("Please enter a valid Email Address");
		form2.mail.select();
		return false;
	}
	
   SendEmailData(form2); 
	return false ;
}