function enlargeImage(path, title){
	if(title==undefined){
		title=":: image ::";
	}
	var iw = window.open('', 'iw', 'toolbars=no,width=300,height=200,top=100,left=100,resizable=yes');
	iw.document.open();
	iw.document.writeln('<html><head>');
	iw.document.writeln('<title>' + title + '</title>');
	iw.document.writeln('<META HTTP-EQUIV="imagetoolbar" content="no">');
	iw.document.writeln('<script language="javascript" type="text/javascript">function resizeWin(){if (document.all || document.layers) window.resizeTo(document.images[0].width+10,document.images[0].height+30);}</script>');
	iw.document.writeln('</head>');
	iw.document.writeln('<body onload="resizeWin();" style="margin:0px;" onblur="self.close();">');
	iw.document.writeln('<div align="center"><img src="' + path + '" onclick="self.close();" onmouseover="this.style.cursor=\'pointer\';"></div>');
	iw.document.writeln('</body></html>');
	iw.document.close();
	return false;
}
