// Images glow

function high(which2) {
	theobject=which2;
	highlighting=setInterval("highlightit(theobject)",50);
}
function low(which2) {
	clearInterval(highlighting);
	which2.filters.alpha.opacity=100;
}
function highlightit(cur2) {
	if(cur2.filters.alpha.opacity>80)
		cur2.filters.alpha.opacity-=5
	else if(window.highlighting)
		clearInterval(highlighting)
}

function fecha() {
 	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]="Agosto";
	months[9]="Septiembre";
	months[10]="Octubre";
	months[11]="Noviembre";
	months[12]="Diciembre";
	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
	document.write(date + " de ");
	document.write(lmonth + " de " + year);
}

function imprimirPagina(frame) {
	if (window.print) {
		parent[frame].focus();
		parent[frame].print();
	}
	else alert("Tu navegador no soporta impresión desde la web");
}