<!--

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

 var imageWindow = window.open("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

//-->