// ==========================
// (C) 2000 by CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
//<script language="JavaScript">
function doTheClock() {
   window.setTimeout( "doTheClock()", 1000 );
   t ="Global Information Protection Systems <--:      "+ new Date()+" :-->";
   if(document.all || document.getElementById){
      document.title = t.toString();
   }else{   
      self.status = t.toString();
   }
}

doTheClock()


//</script>
