function popupImage(img, name, wid, hi) {
    features = 
	"toolbar=no,location=no,directories=no,status=no,menubar=no," +
	"scrollbars=no,resizable=no,width=" + wid + ",height=" + hi;
    dlg = window.open ('','Detail',features);
    dlg.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
    dlg.document.write('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">');
    dlg.document.write('<head>');
    dlg.document.write('<title>' + name + ' Detail</title>');
    dlg.document.write('<style type="text/css"> body {align:center; text-align:center; font-family: Tahoma, Geneva, Verdana, sans-serif; font-size-adjust: none; font-stretch: normal; font-style: normal; line-height: normal; } h2 {background-color: #9e6b5a; color: #ffffff; font-weight: bold; margin: 5px 5px 10px 5px; padding: 3px 5px 4px 5px; } .clear { clear:both; }</style>');
    dlg.document.write('</head><body>');
    dlg.document.write('<h2>' + name + ' Detail</h2>');
    dlg.document.write('<p><img src="' + img + '" alt="' + name + ' Detail" title="' + name + ' Detail" />');
    dlg.document.write('<br class="clear" />');
    dlg.document.write('<a href="javascript:window.close()">Click to close</a></p>');
    dlg.document.write('</body>');
    dlg.document.write('</html>');
}

