function validare(){
if (document.pp.c_name.value==""){
			alert ("Name?");
			document.pp.c_name.focus();
			return false;
}
if (document.pp.c_surname.value==""){
			alert ("Surname?");
			document.pp.c_surname.focus();
			return false;
}
if (document.pp.c_email.value.indexOf("@")==-1||document.pp.c_email.value.indexOf(".")==-1){
			alert ("Email?");
			document.pp.c_email.focus();
			document.pp.c_email.select();
			return false;
}
if (document.pp.c_enquiry.value==""){
			alert ("Enquiry?");
			document.pp.c_enquiry.focus();
			return false;
}


 return true;

}