<!--
var msg = "                                        *** Our group organizes the ESF-EMBO symposium Protein Design and Evolution for Biocatalysis in Feliu de Guixols, Spain, October 25-30, 2008 *** Prime Minister Mirek Topolanek visited our group to learn more about the project on decontamination of sulphur mustard *** Dr. Marta Monincova defended her Thesis and will leave for postdoc to Manchester *** New undergraduate students Radka Uhlirova and Ondrej Kubesa joined the group for three-months' testing period ***";
var spacer = "                                                                                                                                                        ";
var pos = 0;
var showmsg = true;
function ScrollMessage() {
   if (!showmsg) {
      window.setTimeout("ScrollMessage()",20);
      showmsg = true;
      return;
   }
   window.status = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
   pos++;
   if (pos > msg.length) pos = -5;
   window.setTimeout("ScrollMessage()",150);
}
ScrollMessage();
function INT(text) {
   showmsg = false;
   window.status = text;
}
// -->