var msg = new Array();
var i = 0;
msg[i++] = '. February 2nd at 7pm.   Optimizing the Preservation and Recovery of Function in the Management of Brain injury';
msg[i++] = '. . February 16th at 7pm.   The Future of Genome Medicine in Patient Care';
msg[i++] = '. . . March 1st at 7pm.  Sir Hans Sloane - His Life and Legacy';
msg[i++] = 'Forthcoming Meetings. All Registered Medical Practitioners welcome . . .';
var dwell = 3000;
id = setInterval('writemsg()',dwell);
var c = 0;
function writemsg() {
  app = msg[c++];
  if (c == i) c = 0;
  document.msgbox.msg.value = app;
}



