// JavaScript Document

function showImageDetail(id, width, height){
   var reqW=640;
   var reqH=480;
   var titleHeight = 40;
   var descriptionHeader = 20;
   var descTextHeight = 90;
   var toolbarSize = 15;
   var addHeight = titleHeight + descriptionHeader + descTextHeight + toolbarSize;
    
   var wWidth = (width >= reqW)? reqW + toolbarSize + toolbarSize: width + toolbarSize + toolbarSize;
   var wHeight = (height >=reqH)? reqH + addHeight: height + addHeight;
   
   var iWidth = (width >= reqW)? ((!document.all)? reqW+toolbarSize: reqW-2): ((!document.all)? width+toolbarSize: width-2);
   var iHeight = (height >=reqH)? reqH: height;
   
   //alert(iWidth+','+iHeight);
   window.open('showImageDetail.php?image_id='+id+'&img_width='+iWidth+'&img_height='+iHeight,'Detail','toolbar=no, scrollbars=yes, menubar=no, location=no, resizable=yes, height='+wHeight+', width='+wWidth); 
}

