// Validador Pallassodrom//

function validarForm (){
	if (document.getElementById("palla_empresa").value == ""){
		document.getElementById ('palla_empresa').style.background = "#fb7862";
		return false;		
	}else if (document.getElementById ('palla_asistentes').options[document.getElementById ('palla_asistentes').selectedIndex].value == ""){
		document.getElementById ('palla_asistentes').style.background = "#fb7862";
		return false;
	}
	// SI HAY ASISTENTES O NO A LA CENA VALIDAMOS LOS NOMBRES DE ESTOS //
	if (document.getElementById ('palla_asistentes').options[document.getElementById ('palla_asistentes').selectedIndex].value != "0"){
	
		if (document.getElementById("palla_nombres").value == ""){
			document.getElementById ('palla_nombres').style.background = "#fb7862";
			return false;
		}
	}
	
	if (document.getElementById ('palla_cursa').options[document.getElementById ('palla_cursa').selectedIndex].value == ""){
		document.getElementById ('palla_cursa').style.background = "#fb7862";
		return false;
	}else if (document.getElementById ('palla_uala').options[document.getElementById ('palla_uala').selectedIndex].value == ""){
		document.getElementById ('palla_uala').style.background = "#fb7862";
		return false;
	}
	// PONEMOS LA CONDICION QUE CUANDO LA OPCION DE LA UALA SEA SI QUE VALIDE EL NUMERO DE ASISTENTES//
	if (document.getElementById ('palla_uala').options[document.getElementById ('palla_uala').selectedIndex].value == "SI"){
	
		if (document.getElementById("palla_asistuala").value.search(/^[0-9]/)){ 
			document.getElementById ('palla_asistuala').style.background = "#fb7862";
			return false; 
		}
	}
	if (document.getElementById("palla_contact").value == ""){
		document.getElementById ('palla_contact').style.background = "#fb7862";
		return false;	
	}
	if (document.getElementById("palla_mail").value == ""){ 
		document.getElementById ('palla_mail').style.background = "#fb7862";
		return false;
	}else{
		if (document.getElementById("palla_mail").value.search(/^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$/ig)){ 
			document.getElementById ('palla_mail').style.background = "#fb7862";
			return false; 
		}
	}
	if (document.getElementById("palla_tel").value.search(/^[0-9]{8,}$/)){ 
			document.getElementById ('palla_tel').style.background = "#fb7862";
			return false; 
	}
	
	return true;
}