// JavaScript Document

// for any popup windows in the site
var slWin=0;
function slWindow(URLStr, left, top, width, height)
{
  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(slWin)
  {
    if(!slWin.closed) slWin.close();
  }

  slWin = open(URLStr, 'slWin', '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
