function PopUp(popID,popSecDelay,popWinWidth,popWinHeight,popWinX,popWinY,popURL) {
      this._label          = popID;
      this._url            = popURL;
      this._winWidth       = eval(parseInt(popWinWidth) + 20);
      this._winHeight      = eval(parseInt(popWinHeight) + 20);
      this._winX           = popWinX;
      this._winY           = popWinY;
      this.win             = null;
      this._delay          = popSecDelay * 1000;
      this.doPopUp = _processPopupWindow;
}

function _processPopupWindow() {
setTimeout('window.open("'+this._url+'","'+this._label+'","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,width='+this._winWidth+',height='+this._winHeight+',screenX='+this._winX+',screenY='+this._winY+',dependent=no");',this._delay);
}

function open_win(theName,theSrc,theScroll,theWidth,theHeight) {
openMov = new PopUp(theName,0,theWidth,theHeight,25,25,theSrc);
openMov.doPopUp();
}
