function showmenu(elmnt)
	{
	document.getElementById(elmnt).style.visibility="visible"
	}
	function hidemenu(elmnt)
	{
	document.getElementById(elmnt).style.visibility="hidden"
	}
	function OpenPopup(c)
	{
		window.open(c,'popup','width=640,height=480,top=80,left=450,scrollbars=yes,status=no,resizable=yes');
	}
	function OpenPopup2(c)
	{
		window.open(c,'popup','width=830,height=610,top=80,left=450,scrollbars=yes,status=no,resizable=yes');
	}
	
	function validateForm(oForm)
 	{
 		//oForm refers to the form which you want to validate
	 	oForm.onsubmit = function() // attach the function to onsubmit event
 		{			
			if(oForm.elements['field0'].value.length < 1)
			{
					alert("Please enter your testimony. Thanks");
	 				return false;
			}			
			return true;
		 }
	}
		
	function validateForm2(oForm)
 	{
 		//oForm refers to the form which you want to validate
	 	oForm.onsubmit = function() // attach the function to onsubmit event
 		{			
			if(oForm.elements['field0'].value.length < 1)
			{
				alert("Please Enter Your Name");
	 			return false;
			}			
			else if (oForm.elements['field1'].value.length < 1 && oForm.elements['field2'].value.length < 1)
			{
				alert("You Must Provide an Email Address or Phone Number");
				return false;
			}
	 		else if (oForm.elements['field3'].value.length < 1)
			{
				alert("Please Type in Your Questions or Comments");
	 			return false;
			}				
			return true;
		 }
	}

