﻿// message to scroll in scrollbar
var msg = "   Jay Shree Krishna... Wellcome to www.samamstvaishnav.com";
var spacer = "...   ";
// current message position
var pos = 0;
//flag to control message
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;
// set timeout for next update
   window.setTimeout("ScrollMessage()",200);
}
// Start the scrolling message
ScrollMessage();
// Display a link help message
function LinkMessage(text) {
   showmsg = false;
   window.status = text;
}

