// JavaScript Document

function validForm()
{
	//alert("check");	
	//alert(document.frm.small.value);	 

 	if(document.frm.fname.value == "" )
	{
		alert("Please Enter your Name");
		document.frm.fname.focus();
		return false;
	}
	
	if(document.frm.email.value == "" )
	{
		alert("Please enter Email Address");
		document.frm.email.focus();
		return false;
	}
	else
	{
		emailExp= /^\w+(\-\w+)*(\.\w+(\-\w+)*)*@\w+(\-\w+)*(\.\w+(\-\w+)*)+$/;
	 	 if (!(emailExp.test(document.frm.email.value)))
		{ 
			   alert("Invalid Email Address");
			   document.frm.email.focus();
			   return false;  
		} 
	}
	
	
	if(document.frm.contact.value == "" )
	{
		alert("Please Enter your Contact No.");
		document.frm.contact.focus();
		return false;
	}
	
	if(document.frm.company.value == "" )
	{
		alert("Please Enter your Company Name");
		document.frm.company.focus();
		return false;
	}
		
}

