
<!--
function Openme(newin) {
flyout=window.open(newin,"flyout","resizable=no,scrollbars=yes,width=800,height=500,top=300,left=300")
}
// -->

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 = picWidth + 350; 
 imgHeight = picHeight + 350;
 dlg.resizeTo(imgWidth, imgHeight);
}

function popupImage(img, name, width, height){

 features = 
    "toolbar=no,location=no,directories=no,status=no,menubar=no," +
    "scrollbars=yes,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://lib.store.yahoo.net/lib/luminoxshop/style.css\" /></head>");


 dlg.document.write("<body onLoad=\"javascript:opener.ResizeToFit(self, picImg.height, picImg.width);\"><center>");
 dlg.document.write("<table width=\"560\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"left\" valign=\"top\" class=\"bodyBoxBdr\"><table width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"left\" valign=\"top\"><table width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td width=\"49%\" align=\"left\" valign=\"top\"><img src=\"http://luminoxshop.com.p2.hostingprod.com/ystore/images/zoom-pg-logo.jpg\" alt=\"\" width=\"192\" height=\"90\" /></td><td width=\"51%\" align=\"right\" valign=\"top\" onfocus=\"MM_openBrWindow('zoompage.html','zoom','width=580,height=600')\"><a href=\"javascript:window.close();\" class=\"btnClose\"><img src=\"http://luminoxshop.com.p2.hostingprod.com/ystore/images/btn-close.jpg\" alt=\"Close\" width=\"43\" height=\"13\" /></a></td></tr></table></td></tr><tr><td height=\"46\" align=\"left\" valign=\"middle\" class=\"rgtPnlHeadbg\">" + name +"</td></tr><tr><td height=\"390\" align=\"center\" valign=\"middle\" class=\"rgtPnlBgcolor1\"><img name=\"picImg\" src=" + img + " /></td></tr><tr><td height=\"12\" align=\"center\" valign=\"middle\" class=\"rgtPnlBgcolor1\"><img src=\"http://luminoxshop.com.p2.hostingprod.com/ystore/images/zoom-pg-blkline.jpg\" alt=\"\" width=\"536\" height=\"1\" /></td></tr><tr><td align=\"left\" valign=\"top\" class=\"rgtPnlBgcolor1\"><img src=\"http://luminoxshop.com.p2.hostingprod.com/ystore/images/spacer.gif\" alt=\"\" width=\"1\" height=\"6\" /></td></tr></table></td></tr></table></body></html>");

 dlg.document.close();
}
