function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function dar_fecha(){
	dias = new Array ("Domingo","Lunes","Martes","Mi&eacute;rcoles","Jueves","Viernes","S&aacute;bado");
	meses = new Array ("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
	fecha = new Date();
	indice = fecha.getMonth();
	indice_d = fecha.getDay();
	document.write(dias[indice_d] + ", " +fecha.getDate()+ " de " + meses[indice]	+" de " + fecha.getFullYear());
}

function abrir(pagina,ancho,alto,status){
	window.open(pagina,'','width='+ancho+',height='+alto+',status='+status+',top=200,left=300');
}

function cerrar(){
 	window.close();
}

function centrar() {
    iz=(screen.width-document.body.clientWidth) / 2; 
    de=(screen.height-document.body.clientHeight) / 2; 
    moveTo(iz,de); 
}
