//VALIDAR FORMULARIO EVENTOS
function camposformularioeventos()
{
	if(form_fiesta.nomFiesta.value=="")
	{	alert("Debes ingresar el nombre de la fiesta");
		form_fiesta.nomFiesta.focus();
		return;
	}
	if(form_fiesta.coleFiesta.value=="")
	{	alert("Debes ingresar el colegio que lo organiza");
		form_fiesta.coleFiesta.focus();
		return;
	}
	if(form_fiesta.fechaFiesta.value=="")
	{	alert("Debes ingresar la fecha de la fiesta");
		form_fiesta.fechaFiesta.focus();
		return;
	}
	if(form_fiesta.horaFiesta.value=="")
	{	alert("Debes ingresar la hora de la fiesta");
		form_fiesta.horaFiesta.focus();
		return;
	}
	if(form_fiesta.direccionFiesta.value=="")
	{	alert("Debes ingresar la dirección de la fiesta");
		form_fiesta.direccionFiesta.focus();
		return;
	}
	if(form_fiesta.coverFiesta.value=="")
	{	alert("Debes ingresar el cover o valor de la fiesta");
		form_fiesta.coverFiesta.focus();
		return;
	}
	if(form_fiesta.nombre.value=="")
	{	alert("Debes ingresar tu nombre");
		form_fiesta.nombre.focus();
		return;
	}
	if(!form_fiesta.email.value.match("@"))
	{	alert("Debe ingresar su email o verificar que sea correcto");
		form_fiesta.email.focus();
		return;
	}
	if(form_fiesta.telefono.value=="")
	{	alert("Debes ingresar tu telefono para contactarte");
		form_fiesta.telefono.focus();
		return;
	}
	form_fiesta.action="enviar_fiesta.php";
	form_fiesta.submit();
}