// JavaScript Document

// for any popup windows in the site
var slWin=0;
var slWinTwo=0;
function slWindow(URLStr, left, top, width, height) {

  if (URLStr.match("thebounce_listen.htm")) {
      ListenNowPopUp();
      return;
  }

  if(slWin)
  {
    if(!slWin.closed) slWin.close();
  }

  slWin = open(URLStr, 'slWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}
function slWindow2(URLStr, left, top, width, height) {
    if (URLStr.match("thebounce_listen.htm")) {
        ListenNowPopUp();
        return;
    }
  if(slWinTwo)
  {
    if(!slWinTwo.closed) slWinTwo.close();
  }
 
  slWinTwo = open(URLStr, 'slWinTwo', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}

//end

