function  formvalidation(thisform)
{ 
	with (thisform)
	{ 
			
			if (emptyvalidation(fname,"Woops! You forgot to fill in your Name")==false) 
			{
				fname.select();
				fname.focus();
				return false;
			}
			if (emptyvalidation(email,"Woops! You forgot to fill in your  Email Address")==false) 
			{
				email.select();
				email.focus();
				return false;
			}
			if(emailvalidation(email)==false)
			{
				alert("Woops! You have entered an invalid Email Address");
				email.select();
				email.focus();
				return false;
			}
			
			if (emptyvalidation(phone,"Woops! You forgot to fill in your  Phone Number")==false) 
			{
				phone.select();
				phone.focus();
				return false;
			}
			  document.getElementById("img_loader").innerHTML='<img  src="images/send_mail.gif" alt=""  />';
			  thisform.submit();
			  return false;
	}
}


 

