window.onload = function(){
	var aMeses = ["","Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"]
	var fa= new Date();
	var nd = fa.getDate();
	var nm = fa.getMonth() + 1;
	var na = fa.getFullYear();
	if($("htxDia") != null && $("htxMes") != null && $("htxAno") != null){
		$("htxDia").value = nd;
		$("htxMes").value = nm;
		$("htxAno").value = na;
		$Ajax("calendario.php?htxAno=" + $("htxAno").value + "&htxMes=" + $("htxMes").value + "&htxDia=" + $("htxDia").value, {cache: false, onFinish: traerMes, tipoRespuesta: $tipo.TEXTO, avisoCargando: "divLoading"});
		var fecha = aMeses[$("htxMes").value] + " " + $("htxAno").value;
		document.getElementById("divMesAno").innerHTML = fecha;
		$("imgMesAnterior").onclick = function(){
			if($("htxMes").value == 1){
				$("htxMes").value = 12;
				$("htxAno").value --;
			}else{
				$("htxMes").value --;
			}
			$Ajax("calendario.php?htxAno=" + $("htxAno").value + "&htxMes=" + $("htxMes").value + "&htxDia=" + $("htxDia").value, {cache: false, onFinish: traerMes, tipoRespuesta: $tipo.TEXTO, avisoCargando: "divLoading"});
			fecha = aMeses[$("htxMes").value] + " " + $("htxAno").value;
			document.getElementById("divMesAno").innerHTML = fecha;
		}
		$("imgMesSiguiente").onclick = function(){
			if($("htxMes").value == 12){
				$("htxMes").value = 1;
				$("htxAno").value ++;
			}else{
				$("htxMes").value ++;
			}
			$Ajax("calendario.php?htxAno=" + $("htxAno").value + "&htxMes=" + $("htxMes").value + "&htxDia=" + $("htxDia").value, {cache: false, onFinish: traerMes, tipoRespuesta: $tipo.TEXTO, avisoCargando: "divLoading"});
			fecha = aMeses[$("htxMes").value] + " " + $("htxAno").value;
			document.getElementById("divMesAno").innerHTML = fecha;
		}
	}
}

function traerMes(html){
	document.getElementById("divCalendario").innerHTML = html;
}
