function makeWindow(strImageTitle, strImagePath, winWidth, winHeight){
  var popUpWin=0;
  var centerWidth = (screen.width/2) - (winWidth/2); 
  var centerHeight = (screen.height/2) - (winHeight/2);
  centerWidth = Math.round(centerWidth);
  centerHeight = Math.round(centerHeight);
  
  //Offscreen
  var scroll = "no";
  if (winHeight > screen.height-100){
    winHeight=screen.height-100;
    winWidth=winWidth+16;
    scroll = "yes";
  };
  
  if(popUpWin){if(!popUpWin.closed) popUpWin.close();}
  popUpWin=open('','','directories=no,location=no,menubar=no,resizable='+scroll+',scrollbars='+scroll+',toolbar=no,width=' + parseInt(winWidth) + ',height=' + parseInt(winHeight) + ',left=' + parseInt(centerWidth) + ',top=' + parseInt(centerHeight));
  popUpWin.focus();
  popUpWin.document.open();
  popUpWin.document.writeln('<html><head><title>' + strImageTitle + "</title></head>");
  popUpWin.document.writeln('<body style="padding: 0px; margin: 0px;">');
  popUpWin.document.writeln("<img src='" + strImagePath + "' border='0' alt=''>");
  popUpWin.document.writeln('</body></html>');
  popUpWin.document.close();
};
