<html>
<head>
<title>
</title>
<SCRIPT language="JavaScript">
<!--
timeID = 10;
stcnt = 16;
msg = "Un portal de Francisco";
tmsg = new Array(32);
  tmsg[0]=msg;
  blnk = "                ";
  for (i=1; i<32; i++)
  {
  b = blnk.substring(0,i);
  tmsg[i]="";
  for (j=0; j<msg.length; j++) tmsg[i]=tmsg[i]+msg.charAt(j)+b;
        }
 
function wiper()
{
  ct = new Date();
  h = "0"+ct.getHours();
  m = "0"+ct.getMinutes();
  s = "0"+ct.getSeconds();
  h = h.substring(h.length-2,h.length+1);
  m = m.substring(m.length-2,m.length+1);
  s = s.substring(s.length-2,s.length+1);
  cl = "Hora actual  "+h+":"+m+":"+s+"   ";
  if (stcnt > -1) str = tmsg[stcnt]; else str = tmsg[0];
  if (stcnt-- < -40) stcnt=31;
  status = cl+str;
  clearTimeout(timeID);
  timeID = setTimeout("wiper()",100);
}
// -->
</SCRIPT>
</head>
<body onload="wiper()">
</body>
<html> 
  
 
