
var months=new Array(13);
months[1]="Enero";
months[2]="Febrero";
months[3]="Marzo";
months[4]="Abril";
months[5]="Mayo";
months[6]="Junio";
months[7]="Julio";
months[8]="Augosto";
months[9]="Septiembre";
months[10]="Octubre";
months[11]="Noviembre";
months[12]="Diciembre";

function fecha(){
	var time=new Date();
	var lmonth=months[time.getMonth() + 1];
	var date=time.getDate();
	var year=time.getYear();
	if (year < 2000)    // Y2K Fix, Isaac Powell
	year = year + 1900; // http://onyx.idbsu.edu/~ipowell
	return " Santiago de Chile, " + date + " de  " + lmonth + " de " + year;
}

changed=false;
function change(e) {
	if (!changed) {
		changed=true;
		e.className='menu2a'
	}
	else {
		changed=false;
		e.className='menu2'
	}
}

n=0
function insertaTR(brake)
{
	n = n + 1;
	if (n % brake == 0)
	{
		document.write("</tr> <tr> ");
	}
}

function valbutton(thisform) {

	myOption = -1;
	for (i=thisform.idItem.length-1; i > -1; i--) {
		if (thisform.idItem[i].checked)
			myOption = i;
	}
	if (thisform.idItem[i].checked)
		myOption = i;	
	
	if (myOption == -1) {
		alert("Debe seleccionar una modalidad");
		return false;
	}
	return true;
}


