// form validation

	function validateMe(){

		var fr=document.prospect;

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

		var em="";

		a=fr.first_name.value;
		b=fr.last_name.value;
		c=fr.title.value;
		d=fr.company.value;
		e=fr.address1.value;
		f=fr.city.value;
		g=fr.state.value;	
		h=fr.zip.value;
	   i=fr.email.value;
		j=fr.phone.value; 
		k=fr.Areas_of_interest.value;
		l=fr.verbatim.value;
		m=fr.country.value;
		if ((a==""))

		{   
		em=em+"* Your First Name must not be empty\n";

		}	
		
		if ((b==""))

		{   
		em=em+"* Your Last Name must not be empty\n";

		}
		if ((c==""))
		{   
		em=em+"* Your Title must contain a minimum of 2 Characters\n";

		}
		if ((d==""))
		{   
		em=em+"* Your Company Name must contain a minimum of 3 Characters\n";

		}
		if ((e==""))

		{   
		em=em+"* Your Address must contain a minimum of 20 Characters\n";

		}
		if ((f==""))

		{   
		em=em+"* Your City must contain a minimum of 5 Characters\n";

		}
		if ((g==""))

		{   
		em=em+"* Your State must contain a minimum of 5 Characters\n";

		}
		if ((m==""))

		{   
		em=em+"* Your Country must contain a minimum of 3 Characters\n";

		}
		if ((h==""))

		{   
		em=em+"* Your Zip must contain a minimum of 5 Characters\n";

		}
		
		if ((i==""))

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

		}
		else
		if( i.indexOf("@")==-1 ) 
		{
		
		em=em+"* Your Email address must be in proper format e.g. xyz@website.com \n";
		}
		
		if ((j==""))

		{   
		em=em+"* Your Phone Number must contain a minimum of 5 Characters\n";

		}
		
		if ((k=="0"))

		{   
		em=em+"* Your Must Select One Option\n";

		}
		
		if ((l==""))

		{   
		em=em+"* Your verbatim must contain a minimum of 50 Characters\n";

		}
		if (em != ""){ 
		alert("Please Make the following corrections : \n\n" + em);

		return false;}

		else

		return true;

	}