// JavaScript Document
<!--
	function Abre_Ventana(loc,titulo,ancho,alto) 
		{ 
		  		  
		 // var Ventana=null;
		  //alert('Ancho: '+ancho);
  		  var specs = 'location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=300,height=800,left=180,top=280;';
		 //var specs = 'status=no,menubar=no,scrollbars=yes,resizable=no,width="+eval(ancho)+",height="+alto+",left=100,top=100;';
		  var Ventana = window.open(loc,titulo,specs);
		  Ventana.location = loc;
		  Ventana.focus();
		}
		
		
var popUpWin=0;
function popUpWindow(URLStr, width, height)
{
   var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function doClock(){ 
  var t=new Date(),a=doClock.arguments,str="",i,a1,lang="5";
  var month=new Array('enero','enero', 'febrero','feb', 'marzo','marzo', 'abril','abr', 'mayo','mayo', 'junio','jun', 'julio','jul', 'agosto','agosto', 'septiembre','sept', 'octubre','oct', 'noviembre','nov', 'diciembre','dic');
  var tday= new Array('Domingo','dom','Lunes','lun', 'Martes','mar', 'Miércoles','mié','Jueves','jue','Viernes','vie','Sábado','sáb');
  for(i=0;i<a.length;i++) {a1=a[i].charAt(1);switch (a[i].charAt(0)) {
  case "M":if  ((Number(a1)==3) && ((t.getMonth()+1)<10)) str+="0";
  str+=(Number(a1)>1)?t.getMonth()+1:month[t.getMonth()*2+Number(a1)];break;
  case "D": if ((Number(a1)==1) && (t.getDate()<10)) str+="0";str+=t.getDate();break;
  case "Y": str+=(a1=='0')?t.getFullYear():t.getFullYear().toString().substring(2);break;
  case "W":str+=tday[t.getDay()*2+Number(a1)];break; default: str+=unescape(a[i]);}}return str;
}
//-->

//-->