	function borra(){
	this.fcontactar.msg.value="";
	}
	function validar()
	{
	if (this.fcontactar.personac.value.length==0){
	window.alert("Rellena la persona de contacto");
	return false;
	}
	else
	if(this.fcontactar.direccion.value.length==0){
	window.alert("Rellena la Direccion");
	return false;}
	
	else
	if (this.fcontactar.poblacion.value.length==0){
	window.alert("Rellena la Poblacion");
	return false;}
	
	else
	if (this.fcontactar.provincia.value.length==0){
	window.alert("Rellena la Provincia");
	return false;}
	
	else
	if (this.fcontactar.tlf.value.length==0){
	window.alert("Rellena el Telefono");
	return false;}
	
	else
	if(this.fcontactar.email.value.lenght==0 || !this.fcontactar.email.value.match("@")){
	window.alert("Rellena el E-Mail correctamente");
	return false;}
	else
	if(this.fcontactar.msg.value.lenght==0){
	window.alert("Rellene el contenido de su mensaje");
	return false;}
	
	else
	return true;
	}