<!--
function goImgWin(myImage,myWidth,myHeight) {
  myHeight += 24;
  myWidth += 24;
  
  w = screen.availWidth;
  h = screen.availHeight;
  
  var origLeft = (w-myWidth)/2, origTop = (h-myHeight)/2;
  
  TheImgWin = window.open(myImage,'image','height=' + myHeight + ',width=' + myWidth + ',toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=' +  origTop + ',left=' +  origLeft);
}

function goImgWin_scroll(myImage,myWidth,myHeight) {
  myHeight += 24;
  myWidth += 24;
  
  w = screen.availWidth;
  h = screen.availHeight;
  
  var origLeft = (w-myWidth)/2, origTop = (h-myHeight)/2;
  
  TheImgWin = window.open(myImage,'image','height=' + myHeight + ',width=' + myWidth + ',toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,top=' +  origTop + ',left=' +  origLeft);
}

function goImgWin_print(myImage,myWidth,myHeight) {
  myHeight += 24;
  myWidth += 24;
  
  w = screen.availWidth;
  h = screen.availHeight;
  
  var origLeft = (w-myWidth)/2, origTop = (h-myHeight)/2;
  
  TheImgWin = window.open(myImage,'image','height=' + myHeight + ',width=' + myWidth + ',toolbar=no,directories=no,status=no,menubar=yes,scrollbars=no,resizable=no,top=' +  origTop + ',left=' +  origLeft);
}
-->