	
	//If javascript is enabled make form viewable & validate
	document.getElementById("form").style.display = 'block';
	document.getElementById("sp").value = 'jsval'
	
	
	function validate(){

		//Check Name
		if (document.Form1.Name.value=="" ){
			window.alert("Please enter name.");
			return false;
		}
		
		//Check Email
		if (document.Form1.Email.value=="" ){
			window.alert("Please enter email address.");
			return false;
		}
		
		//Check Question
		if (document.Form1.Questions.value=="" ){
			window.alert("Please enter comment or question.");
			return false;
		}
		
		//Submit Form
		document.Form1.setAttribute("action", "/content/contact-proc.asp");
		

	}
	
	
	