function popup(pic,w,h,title) {
	settings = 'height='+h+',width='+w+',scrollbars=no,resizable=no';

	win = window.open('','WindowImg',settings);
	win.document.open('text/html');
	win.document.write('<title>'+title+'</title>');
	win.document.write('<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	win.document.write('<a href="javascript://" onClick="window.close()"><img src="'+pic+'" width="'+w+'" height="'+h+'" border="0"></a>');
	win.document.writeln('</body>');
	win.document.close();
}