﻿
    message     = "Welcome to Varanasi Yellow Pages - Classified, Uttar Pradesh, India - Yellow Pages Varanasi -^" +
                "Varanasi Classified - Varanasi Local ADs.^" +
                "Designed & Developed by N.T.Soft .^" +
                 "^"
  scrollSpeed = 25
  lineDelay   = 1500
  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      window.status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }        
scrollText(0)
//---------------------------------------------
window.moveTo(0,0);
    window.resizeTo(screen.availWidth, screen.availHeight);
//        function max() 
//        { 
//            var obj = new ActiveXObject("Wscript.shell"); 
//            obj.SendKeys("{122}"); 
//        }
//---------------------------------------------
