function changeImage(img) {
document.getElementById('popup').innerHTML="<img src=\""+ img +"\" id=\"mainimage\" border=\"0\" align=\"middle\" vspace=\"0\" >";
}

function ResizeToFit(dlg, picHeight, picWidth) {
 var imgWidth;
 var imgHeight;
 
 imgWidth = 600; 
 imgHeight = picHeight + 250;
 dlg.resizeTo(imgWidth, imgHeight);
}

function popupImage(img, name, width, height){

 features = 
    "toolbar=no,location=no,directories=no,status=no,menubar=no," +
    "scrollbars=no,resizable=no,width=" + width + ",height=" + height;
 dlg = window.open ("","Details",features);
 dlg.document.write("<html><head><title></title><link type=\"text/css\" rel=\"stylesheet\" href=\"http://yst.hydroponics.org/css/style.css\" /></head>");

 dlg.document.write("<body onLoad=\"javascript:opener.ResizeToFit(self, picImg.height, picImg.width);\"><center>");
 dlg.document.write("<table width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"center\" valign=\"top\" class=\"enlarge-main-tab\"><table width=\"100%\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"left\" valign=\"top\"><a href=\"javascript:window.close();\"><img src=\"http://yst.hydroponics.org/images/btn-close.jpg\" alt=\"\" width=\"46\" height=\"22\" border=\"0\" class=\"btn-close\" /></a><img src=\"http://yst.hydroponics.org/images/enlage-logo.jpg\" alt=\"\" width=\"232\" height=\"64\" border=\"0\" class=\"enlarge-logo\" /></td></tr><tr><td align=\"left\" valign=\"top\"><table width=\"100%\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"left\" valign=\"top\" class=\"enlarge-pro-name\"><img src=\"http://yst.hydroponics.org/images/enlage-pn-rgt-crv.jpg\" alt=\"\" width=\"54\" height=\"37\" border=\"0\" />" + name + "</td></tr><tr><td align=\"left\" valign=\"top\" class=\"enlarge-pro-area\"><table width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td width=\"10\" align=\"left\" valign=\"top\"><img src=\"http://yst.hydroponics.org/images/enlage-tl-crv.jpg\" alt=\"\" width=\"10\" height=\"11\" border=\"0\"  /></td><td align=\"left\" valign=\"top\" class=\"enlarge-light-green-bg\"><img src=\"http://yst.hydroponics.org/images/enlage-tp-img.jpg\" alt=\"\" width=\"400\" height=\"11\" border=\"0\"  /></td><td width=\"9\" align=\"left\" valign=\"top\"><img src=\"http://yst.hydroponics.org/images/enlage-tr-crv.jpg\" alt=\"\" width=\"9\" height=\"11\" border=\"0\"  /></td></tr><tr><td align=\"left\" valign=\"top\" class=\"enlarge-light-green-bg\"><img src=\"http://yst.hydroponics.org/images/enlage-lft-img.jpg\" alt=\"\" width=\"10\" height=\"192\" border=\"0\"  /></td><td align=\"center\" valign=\"middle\"><img name=\"picImg\" src=" + img + " id=\"mainimage\"/></td><td align=\"left\" valign=\"top\" class=\"enlarge-light-green-bg\">&nbsp;</td></tr><tr><td align=\"left\" valign=\"top\"><img src=\"http://yst.hydroponics.org/images/enlage-bl-crv.jpg\" alt=\"\" width=\"10\" height=\"10\" border=\"0\"  /></td><td align=\"left\" valign=\"top\" class=\"enlarge-light-green-bg\">&nbsp;</td><td align=\"left\" valign=\"top\"><img src=\"http://yst.hydroponics.org/images/enlage-br-crv.jpg\" alt=\"\" width=\"9\" height=\"10\" border=\"0\"  /></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html>");


 dlg.document.close();
}