/*********************************************************************************************
* Created By: Darwish A. Khalil
* Date: 23/09/2003 - 12:00 PM
*********************************************************************************************/

timeID = 10;
stcnt = 30;
msg = "  Welcome to the Integrated Digital Systems - IDS Web site  ";
tmsg = new Array(300);
tmsg[0]=msg;
blnk = "                                                                                                                  ";
for (i=1; i<300; 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 = "Current Time "+h+":"+m+":"+s+"   ";
  if (stcnt > -1) str = tmsg[stcnt]; else str = tmsg[0];
  if (stcnt-- < -40) stcnt=31;
  status = str;
  clearTimeout(timeID);
  timeID = setTimeout("wiper()",100);
}
