<!--
  var x = 0, y = 0, z = 100, delay = 100
  var text = "MySMB Consulting and Informatics Services Ltd.  Pasarét Residence, 1026	Budapest, Pasaréti út 84/b.  "
  +"Phone: +36/1/374-0426,  Fax: +36/1/374-0427  "
  +"Mobile: +36/30/922-6557"
  while (y ++ < z) {text = " " + text}
  function scroller() {
  window.status = text.substring(x++, text.length);
  if (x == text.length)  {x = 0;}
  setTimeout("scroller()", delay);
  }
  scroller();
//-->