
	var RecaptchaOptions = {
	   theme : 'white'
	};
	
	
				function Form_Validator(theForm)
				{
						if (theForm.email.value == "")
						  {
							alert("Please enter an e-mail address for us to respond to.");
							theForm.email.focus();
							return (false);
						  }
			  
						if (theForm.emailC.value == "")
						  {
							alert("Please enter confirmation e-mail address.");
							theForm.emailC.focus();
							return (false);
						  }
						  
						if (theForm.emailC.value != theForm.email.value)
						  {
							alert("Please ensure confirmation e-mail matches original e-mail.");
							theForm.emailC.focus();
							return (false);
						  }
			 

				return (true);

				}
				
				
				
				
		function show(id){

		document.getElementById(id).style.display = 'block';
		}		
		function hide(id){

		document.getElementById(id).style.display = 'none';
		}			
			