function showImage( imgPath, imgDesc, width, height )
{
   var url = new String( "/istori/showimage2.asp?" );
   url += "imgPath=" + imgPath;
   
   window.open(url, "", "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + width + ",height=" + height + "\"");  
}

function showImage2( imgId, imgTbl, width, height )
{
   var url = new String( "/istori/showimage.asp?" );
   url += "imgId=" + imgId;
   url += "&imgTbl=" + imgTbl;   

   
   window.open(url, "", "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + width + ",height=" + height + "\"");  
}