function getTodayDate(){
	// Array of day names
	var dayNames = new Array("Domingo","Lunes","Martes","Miercoles","Jueves","Viernes","Sabado");
	// Array of month Names
	var monthNames = new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
	var now = new Date();
	document.write(dayNames[now.getDay()] + ", " + now.getDate() + " de " + monthNames[now.getMonth()] + " de " + now.getFullYear());
}
/*
 * popup - Opens a centered popup
 * @url		URL
 * @w		Width
 * @h		Height
 * @s		Scrollbars (0=no, 1=yes)
 * @Author	Jorge Loyo
 * @Date	06/19/2006
 */
function popup(url,w,h,s,l,t)
{
	window.name = 'main';
	leftW = (l == undefined) ? (screen.width-w)/2 : l;
	//leftW	= (screen.width-w)/2;
	topH = (t == undefined) ? (screen.height-h)/2 : t;
	//topH	= (screen.height-h)/2;
	features	= "titlebar=0,location=0,directories=0,menubar=0,scrollbars="+s+",status=0,toolbar=0,resizable=1,height="+h+",width="+w+",left="+leftW+",top="+topH
		winpops = window.open(url,"remote",features);
}