// JavaScript Document
imageWindow = null;
function openImage(src, w, h) {
     var sizePrefix = "";
     if(w != null) {
          w += 10;
          sizePrefix += "width="+w+",";
     }
     if(h != null) {
          h += 60;
          sizePrefix += "height="+h+",";
     }
     imageWindow = window.open("/getImage.php?img="+src+"&width="+w+"&height=" + h,"bigImage", sizePrefix+"top=50,left=50,resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no");
     if(imageWindow != null && imageWindow.focus != null) {
          imageWindow.focus();
          if(imageWindow.resizeTo != null) {
               imageWindow.resizeTo(w, h);
          }
     }
}