//--------------- LOCALIZEABLE GLOBALS ---------------
var d=new Date();
var monthname=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
//Ensure correct for language. English is "January 1, 2004"
var TODAY = monthname[d.getMonth()] + " " + d.getDate() + ", " + d.getFullYear();
var remote=null
//---------------   END LOCALIZEABLE   ---------------

function AbreW(u,w,h) {
	if (remote!=null) {
		remote.close();
		remote=null;
	}
	Vx = (screen.width) ? (screen.width-w)/2 : 0;
	Vy = (screen.height) ? (screen.height-h)/2 : 0;
	remote=window.open(u,'posada','width='+w+',height='+h+',screenX='+Vx+',left='+Vx+',top='+Vy);
}
/*
function CierraW() {
if (remote!=null) {
	remote.close();
	remote=null;
	}
}
*/

function concurso(w,h){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	ww = window.open('concurso.htm','concurso','width='+ w + ', height=' + h +' , scrollbars=no, left=' + LeftPosition + ', top=' + TopPosition);
	ww.focus();
}

