function openJTSWindow(imgUrl,fileNameText,title,description,w,h,backcolor,bordercolor,fontcolor)
{
   var nheight = screen.availHeight-200; 
   var nwidth = screen.availWidth-80; 
   if (w>nwidth) w=nwidth;
   if (h > nheight)
   {
      h = nheight;
   }

   var img2Url = imgUrl.replace("s/standard/", "s/full/");

   var s = ""; 
   var cTitle = title;
   if (!backcolor) backcolor="#F9F9F9"; 
   if (!title.length>0) cTitle=fileNameText;
   s += "<html>"; 
   s += "<head>"; 
   s += "<title>" + cTitle + "</title>"; 
   s += "</head>"; 
   s += "<body bgcolor=\"" + backcolor + "\" leftmargin=\"0\" topmargin=\"0\">"; 
   s += "<table width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"center\">";
   s += "<table bgcolor=\"" + backcolor + "\" cellpadding=\"5\" cellspacing=\"0\">";
   s += "<tr><td align=\"left\" style=\"padding-bottom:5px; font-family:arial,sans-serif; color:" + fontcolor + "; font-size:15px;\">" + title + "</td></tr>"
   s += "<tr>"; 
   s += "<td align=\"center\" valign=\"middle\" width=\"100%\" height=\"100%\">"; 
   s += "<a TARGET=\"_blank\" href=\"" + img2Url + "\"><img height=\"" + h + "\" id=\"Image1\" src=\"" + imgUrl + "\" style=\"border-style: solid; border-color:" + bordercolor + "; border-width:1px;\" /></a>"; 
   s += "</td>"; 
   s += "</tr>";
   s += "<tr><td valign=\"top\" align=\"left\" style=\"padding-top:5px; font-family:arial,sans-serif; color:" + fontcolor + "; font-size:13px;\" >" + description + "</td></tr>" 
   s += "</td></tr></table>"; 
   s += "</table>"; 
   s += "</body>"; 
   s += "</html>"; 
   var windowOpenFeatures = ""; 

   if(w>1000){w = parseInt(w) - parseInt('50');}else{w = parseInt(w) + parseInt('60');}
   h = parseInt(h) + parseInt('95');

   windowOpenFeatures = 'width=' + w + ',height=' + h + ',toolbar=no,location=no,status=no,scrollbars=no,resizable=yes,menubar=no'; 

   var win = window.open("?img=" + imgUrl,"_blank",windowOpenFeatures); 
   win.document.write(s);
}
