<!--

function ponerfecha() {
	var now = new Date();
	var month = now.getMonth();
	var day = now.getDay();
	var date = now.getDate();
	var diasemana = new Array("Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado");
	var mes = new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
	document.open();
	document.write(diasemana[day] + ", " + date + " de " + mes[month] + " de " + now.getYear());
}

function CambiarColor(Element,Estado) {
	if (Estado == 1) {
		Element.className = "Color"
		Element.style.cursor = 'hand';
	} else {
		Element.className = ""
		Element.style.cursor = 'default';
	}
}
function IrLink(strUrl) {
	window.open(strUrl,"_self");
}

function AbrirPopUp(strUrl,strNombre,Ancho,Alto) {
	xp = (screen.width);
	posx = (xp-Ancho)/2; 
	
	yp = (screen.height);
	posy = (yp-Alto)/2 - 20;
	
	ObjPopUp = window.open(strUrl,strNombre,"width="+Ancho+",height="+Alto+",top="+posy+",left="+posx+",directories=0,titlebar=0,toolbar=no,menubar=yes,status=no,location=no"); 
	ObjPopUp.focus();
}

-->