function check(fr)
	{
	if(fr.contactname.value=="")
		{
		alert("Please enter contact person's name!");
		fr.contactname.focus();
		return(false);
		}
	if(fr.companyaddress.value=="")
		{
		alert("Please enter your company address!");
		fr.companyaddress.focus();
		return(false);
		}
	if(fr.email.value=="")
		{
		alert("Please enter your E-mail I-D!");
		fr.email.focus();
		return(false);
		}
	if(fr.email.value!="")
		{
		pass=fr.email.value.indexOf('@',0);
		if(pass==-1)
			{
			alert("Not a valid E-mail I-D. E-mail I-D's atleast contain @ and .net, .com, .org.. etc!");
			fr.email.focus();
			return(false);
			}
		}
	if(fr.projtitle.value=="")
		{
		alert("Please enter Project Title!");
		fr.projtitle.focus();
		return(false);
		}
	if(fr.projsummary.value=="")
		{
		alert("Please enter Project Summary!");
		fr.projsummary.focus();
		return(false);
		}


	}
