function imWin(url,wi,hi)
{
	var opt="toolbar=no, status=no, menubar=no, scrollbars=no, location=no, width="+wi+", height="+hi;
	popWin=window.open("","_blank",opt);
	popWin.document.open();
	popWin.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\n');
	popWin.document.write('"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
	popWin.document.write('\n<html>\n<head>\n<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />\n');
	//popWin.document.write('<meta http-equiv="Imagetoolbar" content="no" />\n');
	popWin.document.write('<script language="JavaScript">');
	popWin.document.write('</script>');
	popWin.document.write('<title>Apartment Image</title>\n');
	popWin.document.write('</head>');
	popWin.document.write('<body style="margin:0px" onblur="self.close()" onclick="self.close()">');
	popWin.document.write('<img border=0 src="'+url+'" width="'+wi+'" height="'+hi+'" align="top">');
	popWin.document.write('</body></html>');
	popWin.document.close();
	popWin.focus();

}