// JavaScript Document

function validation()
{
			if(!CheckValidation(document.getElementById('select_products'),"Please select products"))return false;
			if(!CheckValidation(document.getElementById('persons_name'),"Please Enter the name"))return false;
			if(!CheckValidation(document.getElementById('city'),"Please Enter the city"))return false;
			if(!CheckValidation(document.getElementById('country'),"Please Enter the country"))return false;
			
			////////////// Email address
			if(!CheckValidation(document.getElementById('email'),"Please enter the email address"))return false;
			var temp=validateemail(document.getElementById("email"));	if(temp==false) return false;
			////////////// Email address
			
			if(!CheckValidation(document.getElementById('comments'),"Please enter the requirments"))return false;
			
}