<!--
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://yst.nebbys.com/css/enlarge.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 class=\"enlarge-bg\"><table width=\"472\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td height=\"7\" align=\"right\" valign=\"top\">&nbsp;</td></tr><tr><td align=\"right\" valign=\"top\"><a href=\"javascript:window.close();\"><img src=\"http://yst.nebbys.com/images/enlarge-close-btn.jpg\" alt=\"\" width=\"63\" height=\"30\" /></a></td></tr><tr><td height=\"7\">&nbsp;</td></tr><tr><td><img src=\"http://yst.nebbys.com/images/enlarge-border-top.jpg\" alt=\"\" width=\"472\" height=\"14\" /></td></tr><tr><td align=\"center\" valign=\"middle\" height=\"406\" width=\"\" class=\"enlarge-bg1\"><img src=" + imgsrc + " name=\"picImg\" alt=\"\" border=\"0\"/></td></tr><tr><td><img src=\"http://yst.nebbys.com/images/enlarge-bott-border.jpg\" alt=\"\" width=\"472\" height=\"18\" /></td></tr><tr><td height=\"12\">&nbsp;</td></tr></table></td></tr></table></body></html>");

 dlg.document.close();
}
