var msg = "*****   Section under construction   *****    For more information, please contact the network administrator *****    ";

var spacer = " <<< ";

// pozitia mesajului
var pos = 0;

//

var showmsg = true;

function ScrollMessage() {

   if (!showmsg) {

      window.setTimeout("ScrollMessage()",1500);

      showmsg = true;

      return;

   }

   window.status = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);

   pos++;

   if (pos > msg.length) pos = 0;

// 

   window.setTimeout("ScrollMessage()",400);

}

// 

ScrollMessage();

// 

function LinkMessage(text) {

   showmsg = false;

   window.status = text;

}

