<!--
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;
 
 
 
var lef = (window.screen.width-550)/2;
var to = (window.screen.height-500)/2;

 imgWidth =555;
 imgHeight = 620;
 dlg.resizeTo(imgWidth, imgHeight);
}

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

 features = 
    "toolbar=no,location=no,directories=no,status=no,menubar=no,,left='+lef+',top='+to" +
    "scrollbars=yes,resizable=yes,width=" + width + ",height=" + height;
 dlg = window.open ("","Details",features);
 dlg.document.write("<html><head><title></title><link type=\"text/css\" rel=\"stylesheet\" href=\"http://milesgershon.com.p2.hostingprod.com/ystore/css/style.css\" /></head>");
 dlg.document.write("<body onLoad=\"javascript:opener.ResizeToFit(self, picImg.height, picImg.width);\">");
 dlg.document.write("<table width=\"550\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table width=\"550\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"0\"><tr>  <td align=\"left\" valign=\"top\" style=\"padding:15px 0 17px 12px;\"><table width=\"527\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><img src=\"http://milesgershon.com.p2.hostingprod.com/ystore/images/sml-logo.jpg\" width=\"222\" height=\"53\"></td>      <td align=\"right\" valign=\"top\"><a href=\"#\" onclick=\"javascript:window.close();\"><img src=\"http://milesgershon.com.p2.hostingprod.com/ystore/images/close-btn.jpg\" width=\"50\" height=\"16\" border=\"0\"></a></td>    </tr>  </table></td></tr><tr>  <td align=\"left\" valign=\"top\" style=\"padding:0 0 0 12px;\"><table width=\"527\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td style=\" background:url(http://milesgershon.com.p2.hostingprod.com/ystore/images/promo-head-bg.jpg) repeat-x; font-size:13px; color:#000; padding:5px 0 5px 14px; line-height:normal; border-left:1px solid #e7e7e7;  border-right:1px solid #e7e7e7; font-family: Arial, Helvetica, sans-serif\">" + name +"</td></tr></table></td></tr><tr>  <td style=\"0 0 0 8px;\" ><table width=\"533\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"center\" valign=\"middle\" style=\"background:url(http://milesgershon.com.p2.hostingprod.com/ystore/images/enlarge-bg.jpg) no-repeat; padding:10px\"><img name=\"picImg\" src=" + img + " /></td></tr></table></td></tr></table></td></tr></table></body></html>");
 dlg.document.close();
}