function valid()
{
	if(document.download.name.value=="")
	{
		alert("Please Enter Your Name:");
		document.download.name.focus();
		return(false);
	}	
	if (document.download.email.value=="") 
	{
		alert("Please Enter Your E-mail Address");    
		document.download.email.focus();
		return(false);
	}
	if ((document.download.email.value.length < 3)||(document.download.email.value.indexOf("@") == 1)||(document.download.email.value.indexOf(".") == -1)||(document.download.email.value.indexOf("'")!= -1))
	{
		alert("Please Enter a valid E-mail Address ");
		document.download.email.focus();
		document.download.email.select();
		return (false);
	}	
	return(true);
}