// JavaScript Document
<!-- 
	function validar_sendemailform(f) {
	
		// Comprueba que los campos obligatorios contengan al menos algún valor
		// --------------------------------------------------------------------
		if (f.f_txtnombre.value=="") {  
			alert("Ha de incluir su NOMBRE");
			f.f_txtnombre.focus();
			return false;
		}
		if (f.f_txtemail.value=="" && f.f_txttelefono.value=="") {  
			alert("Es necesario EMAIL o Teléfono para ponerse en contacto con usted");
			f.f_txttelefono.focus();
			return false;
		}
		if (f.f_txtcomentario.value=="") {  
			alert("Por favor, escriba el comentario que quiere hacerle llegar");
			f.f_txtcomentario.focus();
			return false;
		}
			
		// Valida email
		// --------------------------------------------------------------------
		if (f.f_txtemail.value!="") {
			if ((f.f_txtemail.value.indexOf(".") == -1) || (f.f_txtemail.value.indexOf("@") == -1) || (f.f_txtemail.value.indexOf(" ") != -1) || (f.f_txtemail.value.indexOf(",") != -1) || (f.f_txtemail.value.length < 6)) {
				alert("El E-mail mal escrito");
				f.f_txtemail.focus();
				return false;
			}
		}
	
		return true;
 }



	function validar_sendempresasform(f) {
	
		// Comprueba que los campos obligatorios contengan al menos algún valor
		// --------------------------------------------------------------------
		if (f.f_txtnombre.value=="") {  
			alert("Ha de incluir su NOMBRE");
			f.f_txtnombre.focus();
			return false;
		}
		if (f.f_txtemail.value=="") {  
			alert("Es necesario EMAIL del destinatario");
			f.f_txtemail.focus();
			return false;
		}
		if (f.f_txtcomentario.value=="") {  
			alert("Por favor, escriba el comentario que quiere hacerle llegar");
			f.f_txtcomentario.focus();
			return false;
		}
			
		// Valida email
		// --------------------------------------------------------------------
		if (f.f_txtemail.value!="") {
			if ((f.f_txtemail.value.indexOf(".") == -1) || (f.f_txtemail.value.indexOf("@") == -1) || (f.f_txtemail.value.indexOf(" ") != -1) || (f.f_txtemail.value.indexOf(",") != -1) || (f.f_txtemail.value.length < 6)) {
				alert("El E-mail mal escrito");
				f.f_txtemail.focus();
				return false;
			}
		}
	
		return true;
 }






		// SHOW AND HIDE
		// --------------------------------------------------------------------
	
		var ids_to_hide_show = [
				"id_mostrar",
				"id_ocultar"
		];

		function show_hide_space() {
			for (i=0; i < ids_to_hide_show.length; i++) {
				var item_tr = document.getElementById(ids_to_hide_show[i]);
				if (item_tr) { 
					if (item_tr.style.display == "none") {
						item_tr.style.display = "";
					} else {
						item_tr.style.display = "none";
					}
				}
			}
		}



//-->

