function Run() 
{
string = /^[\s]+$/
string2 = /^[a-zA-Z0-9-.''\s]+$/
string3 = /0-9/
string4= /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,})+$/
	if (document.forms[0].txtName.value=="")	
	{
		alert("Please enter your name.!")
		document.forms[0].txtName.focus();
		return false;
	}
	if (document.forms[0].txtAddress.value=="")	
	{
		alert("Please enter your address.!")
		document.forms[0].txtAddress.focus();
		return false;
	}
	if (document.forms[0].txtCountry.selectedIndex==0) 
	{
		alert("Please select your country from the list.!");
		document.forms[0].txtCountry.focus();
		return false;
	}
	if (document.forms[0].txtPhone.value=="") 
	{
		alert("Please enter your contact numbers");
		document.forms[0].txtPhone.focus();
		return false;
	} 
	str=document.forms[0].txtEmail.value
	if (str=="")
	{
		alert("Please enter your email address.");
		document.forms[0].txtEmail.focus();
		return false;
	} 
	if (!str.match(string4)) 
	{
		alert("Invalid email id entered.\nPlease check the syntax.\n\nExample: someone@somewhere.com")
		document.forms[0].txtEmail.focus();
		return false;
	}	
}