function validarer(){
if (document.ppx.q_name.value==""){
			alert ("Name?");
			document.ppx.q_name.focus();
			return false;
}

if (document.ppx.q_email.value.indexOf("@")==-1||document.ppx.q_email.value.indexOf(".")==-1){
			alert ("Email?");
			document.ppx.q_email.focus();
			document.ppx.q_email.select();
			return false;
}
if (document.ppx.q_inquiry.value==""){
			alert ("Inquiry?");
			document.ppx.q_inquiry.focus();
			return false;
}


 return true;

}