<!--
function displayWindow(url, width, height) {
pop = window.open ("", "displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no' )

pop.document.write('<body leftmargin="0" topmargin="0">');
pop.document.write('<img src="zoom/'+ url +'" width="'+ width +'" height="'+ height +'">');
pop.document.write('</body>');

}
//-->
