function imgOpen(url,title)
{
	var imgWndw;
	imgWndw=window.open("", "", 'menubar=no,directories=no,location=no,resizable=no,scrollbars=no,width=460,height=460');
	imgWndw.document.write('<html><head><title>' + title + '</title></head><body bgcolor="#F3F1F1">');
	imgWndw.document.write('<table onLoad="self.resizeTo(document.model.width, document.model.height); self.moveTo((screen.width - document.model.width) / 2,(screen.height - document.model.height) / 2);" cellpadding="0" cellspacing="0" border="0"  align="center" style="border: 1px solid #EABD8B"><tr><td align=center valign=middle><img src="../' + url + '" border=0></td></tr></table><p align="center"><a href="javascript:;" onclick="self.close();" style="text-decoration: none; color: #D29F67;">[close]</a></p>');
	imgWndw.document.write('</body></html>');
	imgWndw.document.close();
}
