<!--
function Openme(newin) {
flyout=window.open(newin,"flyout","resizable=no,scrollbars=yes,width=800,height=500,top=300,left=300")
}
// -->
function ResizeToFit(dlg, picHeight, picWidth) {

 var imgWidth;
 var imgHeight;
 imgWidth = picWidth + 100; 
 imgHeight = picHeight + 150;
 dlg.resizeTo(imgWidth, imgHeight);
}
function displayImages(img, name, width, height){

	var imgsrc = img;
	height = height + img.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>" + name + " Zoom</title><link type=\"text/css\" rel=\"stylesheet\" href=\"http://laflor.com.p2.hostingprod.com/ystore/css/style.css\" /></head>");
 dlg.document.write("<body bgcolor=white onLoad=\"javascript:opener.ResizeToFit;\">");
 dlg.document.write("<table width=\"500\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table width=\"500\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td class=\"enlage-logo\"><img src=\"http://laflor.com.p2.hostingprod.com/ystore/images/enlarge-logo.jpg\" width=\"195\" height=\"56\" /></td><td align=\"right\" valign=\"top\" class=\"close-btn\"><a href=\"javascript:window.close();\"><img src=\"http://laflor.com.p2.hostingprod.com/ystore/images/close-btn.jpg\" width=\"63\" height=\"17\" border=\"0\" /></a></td></tr></table></td></tr><tr><td><table width=\"471\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td class=\"enlage-heading\">" + name + "</td></tr><tr><td class=\"enlage-big-img-bg\"><table width=\"453\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td class=\"prod-bg1\" align=\"center\" valign=\"middle\" width=\"450\" height=\"410\"><img src=" + imgsrc + " name=\"picImg\" alt=\"\" border=\"0\" /></td></tr></table></td></tr></table></td></tr><tr><td align=\"center\" valign=\"middle\">&nbsp;</td></tr></table></body></html>");

 dlg.document.close();
}

