function chkDaForm()
{

	MSG = "Faltan los sgtes. datos:\n\n";

	if (!document.f1.rut.value) {MSG += "Rut\n";}
	if (!document.f1.dv.value) {MSG += "Dígito Verificador\n";}
	if (!document.f1.nombre.value) {MSG += "Nombre\n";}
	if (!document.f1.ap_pat.value) {MSG += "Apellido Paterno\n";}
	if (!document.f1.ap_mat.value) {MSG += "Apellido Materno\n";}
	if (!document.f1.calle.value) {MSG += "Dirección\n";}
	if (!document.f1.num.value) {MSG += "Número\n";}
	if (!document.f1.fono.value) {MSG += "Teléfono\n";}

	if (!document.f1.lugar.value) {MSG += "Lugar de Veraneo\n";}
	if (!document.f1.mesini.value) {MSG += "Mes de Inicio\n";}
	if (!document.f1.diaini.value) {MSG += "Día de Inicio\n";}
	if (!document.f1.annoini.value) {MSG += "Año de Inicio\n";}
	if (!document.f1.horaini.value) {MSG += "Hora de Salida\n";}

	if (!document.f1.mesfin.value) {MSG += "Mes de Término\n";}
	if (!document.f1.diafin.value) {MSG += "Día de Término\n";}
	if (!document.f1.annofin.value) {MSG += "Año de Término\n";}
	if (!document.f1.horafin.value) {MSG += "Hora de Llegada\n";}

	if (!document.f1.meil.value) {MSG += "E-Meil\n";}
	if (!document.f1.fonoveraneo.value) {MSG += "Teléfono del lugar de Veraneo\n";}

	//fechas();
	//fechasfin();


	if (MSG == "Faltan los sgtes. datos:\n\n")
	{
		return true;
	}
	else {alert(MSG); return false}

}


function fechas()
{
	MSG = "Faltan los sgtes. datos:\n\n";

	if (document.f1.annoini.value < "2003"){MSG += "El programa comienza a regir a partir del 2003\n";}

	if (document.f1.mesini.value > 3) {MSG += "Fono Verano esta programado para regir entre el 19 de diciembre 2003 y el 15 de marzo del 2004\n";}

	if (document.f1.mesini.value == "03" || document.f1.mesini.value == "3")
	{
		if (document.f1.diaini.value > "15") {MSG += "Fono Verano rige hasta el 15 de  Marzo del 2002\n";}
	}

	if (MSG == "Faltan los sgtes. datos:\n\n")
	{
		return true;
	}
	else
	{
		alert(MSG);
		document.f1.annoini.value = "";
		document.f1.mesini.value = "";
		document.f1.diaini.value = "";
		return false;
	}
}

function fechasfin()
{
	MSG = "Faltan los sgtes. datos:\n\n";

	if (document.f1.annofin.value < "2003"){MSG += "El programa comienza a regir a partir del 2003\n";}

	if (document.f1.mesfin.value > 3) {MSG += "Fono Verano esta programado para regir entre el 19 de diciembre 2003 y el 15 de marzo del 2004\n";}

	if (document.f1.mesfin.value == "03" || document.f1.mesfin.value == "3")
	{
		if (document.f1.diafin.value > "15") {MSG += "Fono Verano rige hasta el 15 de  Marzo del 2004\n";}
	}

	if (MSG == "Faltan los sgtes. datos:\n\n")
	{
		return true;
	}
	else
	{
		alert(MSG);
		document.f1.annofin.value = "";
		document.f1.mesfin.value = "";
		document.f1.diafin.value = "";
		return false;
	}
}


function dias()
{
	if (document.f1.diaini.value < 10)
	{
		document.f1.diaini.value = "0"+document.f1.diaini.value;
	}
}

function diasfin()
{
	if (document.f1.diafin.value < 10)
	{
		document.f1.diafin.value = "0"+document.f1.diafin.value;
	}
}