
<!-- 

// Last updated:  8.29.06

// for IE - PC dislay:
winTop='150';
winLeft=(winTop * 3);

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

  if (!chrome) {
    chrome = 0;
  }
  
  // Needed to resize popup win for Safari
  if (navigator.appName == "Safari") {
	winWidth += 10;
	winHeight += 10;
  }

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

// -->