// PARA LINKAR MAILS SIN QUE LOS RASTREEN ROBOTS
function mailnobot(nm,dm) {
   mailurl = "mailto:" + nm + "@" + dm;
   window.location = mailurl;
	}

// VALIDACION DE FORMULARIOS 
function validarPedido(){
	if ( 
		document.getElementById("nombre_apellidos").value == "" || 
		document.getElementById("direccion").value == "" || 
		document.getElementById("cpostal").value == "" || 
		document.getElementById("ciudad").value == "" || 
		document.getElementById("provincia").value == "" || 
		document.getElementById("email").value == "" || 
		(
		 	(document.getElementById("talla_lapizes").value == "" || document.getElementById("cantidad_lapizes").value == "") && 
			(document.getElementById("talla_servi").value == "" || document.getElementById("cantidad_servi").value == "") &&
			(document.getElementById("talla_ninyo").value == "" || document.getElementById("cantidad_ninyo").value == "") && 
			(document.getElementById("talla_flexo").value == "" || document.getElementById("cantidad_flexo").value == "") && 
			(document.getElementById("talla_camiz").value == "" || document.getElementById("cantidad_camiz").value == "") && 
			(document.getElementById("talla_mortadelito").value == "" || document.getElementById("cantidad_mortadelito").value == "")
		) 
		) { alert("Ha de rellenar los campos obligatorios"); return false; }
}