
	function validate_me(){
		

		var fr=document.contact;

		var a,b,c,d,e,f,g,h,i,j,k,l,m;

		var em="";

		a=fr.oname.value;
		b=fr.phone.value;
		
		c=fr.email.value;
		d=fr.typ_busin.value;
		
		e=fr.size_busin.value;
		f=fr.goal.value;

		
		if ((a==""))

		{   
		em=em+"* Owner Name must be filled\n";

		}
		if ((b==""))
		{   
		em=em+"* Your Phone Number must be filled\n";
		}
		
		if ((c==""))

		{   
		em=em+"* Your Email Address must be filled\n";

		}
		else
		if( c.indexOf("@")==-1) 
		{
		
		em=em+"* Your Email address must be in proper format e.g. xyz@website.com \n";
		}else
		if( c.indexOf(".")==-1 ) 
		{
		
		em=em+"* Your Email address must be in proper format e.g. xyz@website.com \n";
		}
		
		if ((d==""))
		{
		em=em+"* Your Type of Business must be filled\n";
		}
		if ((e==""))
		{
		em=em+"* Your Size of Business must be filled\n";
		}
		if ((f==""))
		{
		em=em+"* Your Goal must be filled\n";
		}
		if (em != ""){ 
		alert("Errors have occures during the process of your form. \n\n Please Make the following corrections : \n\n" + em);

		return false;}

		else

		return true;

	}
