<!--
       var winLength = 135; // guess at how many spaces wide the status bar is
       var speed = 75; // number of milliseconds between updates
       function scroll(count)
     {
        var msg = 'You have logged on to the Official Website of "Sikkim Public Service Commission, Gangtok."' ;
        var out = " ";
        var cmd = "scroll(";

        if (count <= winLength && 0 < count)
        {
          var c =0;
          for (c = 0 ; c < count ; c++)
          {
            out += " ";
          }
         out += msg;
        }
       else if (count <= 0)
        {
          if (-count < msg.length)
            {
              out += msg.substring(-count,msg.length);
            }
        else
        {
          count = winLength + 1;
        }
     }
    window.status = out;
    count--;
    cmd += count + ")";
    window.setTimeout(cmd,speed);
}
-->