// JavaScript Document
function validForm(passform)
	{
		if(passform.name.value == "")
				{
				alert("You need to enter your name")
				passform.name.focus()
				return false
				}
		
		
		
		if(passform.email.value == "")
				{
				alert("You need to enter your email address. We will never give this to anyone and will use it to respond to your inquiry")
				passform.email.focus()
				return false
				}
		else
				{
					var x = passform.email.value;
					var filter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
							if (filter.test(x)) 
									{
										//document.paypal_form.submit();
										return true
									}
							else 
									{
										alert('Enter a valid email address. We will never give this out to anybody');
										passform.email.value="";
										passform.email.focus();
										return false
									}
				}
		
	}