function chkform()
		{
			if (document.Form1.txtName.value=="")
			{
				alert("Plesae Enter Your Name");
				document.Form1.txtName.focus();
				return false;
			}
			if (document.Form1.txtOrganisation.value=="")
			{
				alert("Plesae Enter Organisation Name");
				document.Form1.txtOrganisation.focus();
				return false;
			}
			if (document.Form1.cmbCountry.value=="Select a Country")
			{
				alert("Plesae Select a country name");
				document.Form1.cmbCountry.focus();
				return false;
			}
			if (document.Form1.txtEmail.value=="")
			{
				alert("Plesae Enter Your email id");
				document.Form1.txtEmail.focus();
				return false;
			}
			if (document.Form1.cmbInquiry.value=="")
			{
				alert("Plesae Select Inquiry Subject");
				document.Form1.cmbInquiry.focus();
				return false;
			}
			return true;
		}