var popUpWin=0;
function popUpWindow(URLStr, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizeable=no,copyhistory=yes,width='+width+',height='+height+',left=20,top=10');
}

function showImage(strBaseDirectory, strImage, intWidth, intHeight) {
 if (intWidth == null || intWidth == undefined) {
  intWidth = 750;
 }//if
 if (intHeight == null || intHeight == undefined) {
  intHeight = 563;
 }//if

 var imageWindow = window.open(strBaseDirectory + "show-image.php?Image=" + strImage, "imageWindow", "top=20, left=20, width=" + intWidth + ", height=" + intHeight + ", toolbar='0', resizable='0', scrollbars='0', status='0', menubar='0', location='0'");
}//function