
<!-- 

// Last updated:  4.9.09

// for IE - PC display:
// *Not using screen placement for Box1 for PC
winTop='150';
winLeft=(winTop * 4);


function makeWinBox1(url, winWidth, winHeight, chrome) {

  if (!chrome) {
    chrome = 0;
  }

  if (navigator.appName == "Netscape" && parseFloat(navigator.appVersion) >= 4) {
    var screenPosX,screenPosY;
    screenPosX = (screen.availWidth - winWidth) / 8;
    screenPosY = (screen.availHeight - winHeight) / 8;
    window.open(url, 'new','toolbar=0,location='+chrome+',directories=0,status='+chrome+',menubar=0,scrollbars=1,resizable=1,copyhistory=0,width='+winWidth+',height='+winHeight+',screenX='+screenPosX+',screenY='+screenPosY);
  }
  else {
    mister = window.open(url, 'new','toolbar=0,location='+chrome+',directories=0,status='+chrome+',menubar=0,scrollbars=1,resizable=1,copyhistory=0,width='+winWidth+',height='+winHeight); //+',top='+winTop+',left='+winLeft);
    mister.location = url;
  }
}

// -->