function validateEmail() 
{
	if (theForm.txtEmail.value == "") 
	{
		alert("Please Enter Your E-Mail Address");
		theForm.txtEmail.focus()
		return false;
	}
	else if (theForm.txtEmail.value.indexOf("@",1) == -1) 
	{
		alert("Please Enter a Valid E-Mail Address");
		theForm.txtEmail.focus()
		return false;
	}
	else 
	{
		theForm.submit();
		return true;
	}
}

