function Run() 
{
string = /^[\s]+$/
string2 = /^[a-zA-Z0-9-.''\s]+$/
string3 = /0-9/
string4= /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,})+$/
	if (document.forms[0].name.value=="")	
	{
		alert("Please Enter Your Name!")
		document.forms[0].name.focus();
		return false;
	}
	if (document.forms[0].contact.value=="") 
	{
		alert("Please enter your Contact Number!");
		document.forms[0].contact.focus();
		return false;
	} 
str=document.forms[0].email.value
	if (str=="")
	{
		alert("Please enter your Email Address!");
		document.forms[0].email.focus();
		return false;
	} 
	if (!str.match(string4)) 
	{
		alert("Invalid E-Mail ID entered.\nPlease check your Syntax.\n\nExample: someone@somewhere.com")
		document.forms[0].email.focus();
		return false;
	}	
	if (document.forms[0].type.selectedIndex==0) 
	{
		alert("Please Select the Contact Method from the List!");
		document.forms[0].type.focus();
		return false;
	}
}