// JavaScript Document
<!--
	function validateState(){
		if(document.Statefrm.name.value==""){
			alert("Please enter the name.");
			document.Statefrm.name.focus();
			return false;
		}
		
		if(document.Statefrm.email.value==""){
			alert("Please enter the email.");
			document.Statefrm.email.focus();
			return false;
		}
		
		if(document.Statefrm.country.value==""){
			alert("Please enter the country.");
			document.Statefrm.country.focus();
			return false;
		}
		
		if(document.Statefrm.Description.value==""){
			alert("Please enter the description.");
			document.Statefrm.Description.focus();
			return false;
		}
		
		
	}

//-->