

// identifying upper left corner
  leftPos=0
  if(screen){
    leftPos=screen.width-430;
  }

// opening fine print page in new window
  function openWindow_01(){
    popWindow=window.open('../finePrint.cfm', 'popup', 'width=400,height=400,left='+leftPos+',top=120,statusbar=yes,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,location=yes');
    popWindow.focus();
  }

// opening technical help page in new window
  function openWindow_02(){
    popWindow=window.open('../help.cfm', 'popup', 'width=400,height=400,left='+leftPos+',top=120,statusbar=yes,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,location=yes');
    popWindow.focus();
  }
  
/* already defined in openIT.js
function openITmax(theURL) {
  var pimwin = null;
  //LeftPos = (screen.width) ? (screen.width-theW)/2 : 0;
  //TopPos = (screen.height) ? (screen.height-theH)/2 : 0;
  LeftPos = 0;
  TopPos = 0;
  var winName = "CollectionViewer";
  var thisH = screen.availHeight;
  var thisW = screen.availWidth;
  var winfeatures = 'height='+thisH+',width='+thisW+',top='+TopPos+',left='+LeftPos+',menubar=yes,resizable=yes,scrollbars=yes,statusbar=yes,status=yes,location=yes,toolbar=yes'
  pimwin = window.open(theURL,winName,winfeatures);
  pimwin.focus();
}
*/