// JavaScript Document
function validation()
{

		
			if(!CheckValidation(document.getElementById('txtname'),"Please Enter the Name"))return false;
			if(!CheckValidation(document.getElementById('txtemail'),"Please enter the email address"))return false;
			var temp=validateemail(document.getElementById("txtemail"));	if(temp==false) return false;

			/*if(!CheckValidation(document.getElementById('txtcompany'),"Please enter the company name"))return false;
			if(!CheckValidation(document.getElementById('txtphone'),"Please enter the phone number"))return false;
			if(!CheckValidation(document.getElementById('txtcity'),"Please enter the city"))return false;
			if(!CheckValidation(document.getElementById('selcountry'),"Please select the country"))return false;
			*/
		
					
}