<!--
function ValidateForm() {
if (document.getElementById('Name').value.length==0)
 	{
 		alert ("Please enter your name ");
 		return false;
 	}
	
//	BELOW LINE DOES NOT WORK IN EXPLORER
//  else if (document.getElementById('Email').value.indexOf("@")==-1 || document.getElementById('Email').value.lastIndexOf(".")==-1)
else if (document.book.Email.value.indexOf("@")==-1 || document.book.Email.value.lastIndexOf(".")==-1)
	{
	      alert("Please enter a valid email address ");
		  return false;
 	}
else
	{
		
//	BELOW LINE DOES NOT WORK IN EXPLORER 
//	document.getElementById('email').value = document.getElementById('Email').value;
	document.book.email.value = document.book.Email.value;
	document.getElementById('book').submit();
	return true;
	}
	
}