<!-- SCROLLING TREXT PE BARA DE JOS A INTERNET EXPLORER -->
<!--
function StartScroll() {
  msg="...Don't have a website yet? It's time to have your own right NOW!..." +
      "...Allready have a website? It's time to upgrade it right NOW!...";
      
  ScrollMessage();  // now let's get the scrolling started!
}

function ScrollMessage(){
  window.status = msg;   // set the message to the current substring...
  msg=msg.substring(1,msg.length) + msg.substring(0,1);  // produce a new subset
  timer=setTimeout("ScrollMessage()", 120);  // in specified 1000ths of a sec do it again.
}

StartScroll();    // start the scrolling sequence going.

// done with script listing  -->

