// JavaScript Document
function EmailValidation()
	{
		var reg = /^[A-z0-9][\w.-]*@[A-z0-9][\w\-\.]+\.[A-z0-9]{2,6}$/;
		var Result = reg.exec(document.getElementById('str_EmailAddress').value);
		if (Result == null) 
		{
			doyou = confirm("You may need a email address in order to get the coupon by email or would you still want to submit the form?(OK = Yes   Cancel = No)"); //Your question.
			if (doyou == true)	return true; else return false;
		}else return true;
	}
