function doTheClock(a) {
   b = a.toString()
   window.setTimeout( "doTheClock(b)", 1000 );
   t = new Date();
 
   if(b=="")
   {
	   if(document.all || document.getElementById)
	   {
      		top.document.title = t.toLocaleString()  + b;
      		window.status="American Red Cross - Mid Southern Illinois Chapter"
   		}
		else
		{   
      		self.status = t.toString();
   		}
   }
   else
   {
	if(document.all || document.getElementById)
	{
      top.document.title = t.toLocaleString()  + " - " + b;
      window.status="American Red Cross - Jefferson County Chapter"
    }
     else
	{   
      self.status = t.toString();
    }
   }
}