function Zoom(Url, title) {
ww=350;  wh=350;
newWindow=window.open(Url,'','width='+(ww+20)+',height='+(wh+20)+',toolbar=0,'+'scrollbars=0,'+'resizable=0');
newWindow.focus();
newWindow.document.open();
newWindow.document.writeln("<title>"+title+"</title><body bgcolor=#FFFFFF marginwidth=10 marginheight=10 topmargin=10 leftmargin=10 bottommargin=10 rightmargin=10><img src="+Url+" width="+ww+" height="+wh+" border=0></body>");
newWindow.document.close();
}

function Compare(Url) {
ww=550;  wh=450;
comWindow=window.open(Url,'Compare','width='+(ww+20)+',height='+(wh+20)+',toolbar=0,'+'scrollbars=1,'+'resizable=1');
}
