function validar_nombre(f){
	if ((f.nombre.value.length == 0) || (f.telefono.value.length == 0) ){
			alert("Debes introducir al menos un nombre y un teléfono");
			return false;
		}
	return true;
	}
	
function validar_automovil(f){
	if ((f.datos_tomador.value.length == 0) || (telefono.value.length == 0) ){
			alert("Debes introducir al menos los datos del tomador y el teléfono");
			return false;
		}
	return true;
	}
	

function validar_noticia(f){

if (f.titulo.value.length == 0){
	alert("La noticia debe tener un título");
	return false;
}

return true;
}

function validar_enlace(f){

if (f.titulo.value.length == 0){
	alert("El enlace debe tener un título");
	return false;
}
if (f.direccion.value.length == 0){
	alert("El enlace debe tener una URL.");
	return false;
}



return true;
}