function func_Validate()
	{

		if (document.frm.txtName.value=="")
			{
				alert ("Please enter your Name.")
				document.frm.txtName.focus()
				return false;
			}

		if (document.frm.txtCompany.value=="")
			{
				alert ("Please enter your Company Name.")
				document.frm.txtCompany.focus()
				return false;
			}
		
		if (document.frm.Country.selectedIndex==0)
			{
				alert ("Please select your Country.")
				document.frm.Country.focus()
				return false;
			}

		if (document.frm.txtTele.value=="")
			{
				alert("Please enter your Telephone Number.")
				document.frm.txtTele.focus();
				return false;
			}

		var string1=document.frm.txtEmail.value;
		if(string1=="")
			{
				alert("Please enter your Email Address.");
				document.frm.txtEmail.focus();
				return false;
			}
			
		var str =/[-a-zA-Z0-9_\.]+@[-a-zA-Z0-9]+\.[-a-zA-Z0-9\.]+/;
		var eflag = document.frm.txtEmail.value.match(str);
		if(eflag!=document.frm.txtEmail.value)
			{
				alert("Please enter a valid Email Address.")
				document.frm.txtEmail.select();
				document.frm.txtEmail.focus();
				return false;
			}
			
		if (document.frm.PnS.selectedIndex==0)
		{
			alert ("Please select Product / Service interested.")
			document.frm.PnS.focus()
			return false;
		}
		
		if (!document.frm.chkLit.checked && !document.frm.chkQuo.checked && !document.frm.chkVis.checked && !document.frm.chkASS.checked)
		{
			alert ("Please check atleast one Action Expected.")
			document.frm.chkLit.focus()
			return false;
		}
		
		return true;
	}
		
	function func_resetForm()
	{
		document.frm.reset();
		document.frm.txtName.focus();
	}
	
	function func_SetFocus()
	{
		document.frm.txtName.focus();
	}
