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 = 800; 
 imgHeight = picHeight + 270;
 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://site.racksandcabinets.com/ystore/css/style.css\" /></head>");

 dlg.document.write("<body onLoad=\"javascript:opener.ResizeToFit(self, picImg.height, picImg.width);\"><center>");
 dlg.document.write("<table width=\"825\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"left\" valign=\"top\" class=\"enlarge-main\"><table width=\"850\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"left\" valign=\"top\" class=\"enlarge-logo-area\"><img src=\"http://site.racksandcabinets.com/ystore/images/enlarge-logo.jpg\" alt=\"\" width=\"160\" height=\"46\" /></td></tr><tr><td align=\"left\" valign=\"top\" class=\"enlarge-mid-area\"><table width=\"484\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"0\"><tr><td  align=\"center\" valign=\"middle\"><img name=\"picImg\" src=" + img + " id=\"mainimage\"/></td></tr><tr><td align=\"left\" valign=\"top\" class=\"enlarge-pro-name\">" + name + "</td></tr></table></td></tr><tr><td height=\"21\" align=\"right\" valign=\"bottom\"><a href=\"javascript:window.close();\"><img src=\"http://site.racksandcabinets.com/ystore/images/brn-close.jpg\" alt=\"\" width=\"53\" height=\"9\" border=\"0\" /></a></td></tr></table></td></tr></table></body></html>");


 dlg.document.close();
}
