function imgPopup(path, w, h) {
	var l=(window.screen.width-w)/2;
	var t=(window.screen.height-h)/3;
	var o=window.open(null, null, 'width='+w+', height='+h+', left='+l+', top='+t+', scrollbars=yes');
	if(o.document.getElementById('body_id')==undefined) {
		var obj='';
		if(path.substring(path.lastIndexOf('.'))!='.swf') {
			obj='<a href="javascript:window.close()"><img src="'+path+'" width="'+w+'" height="'+h+'" border="0" style="display:block"></a>';
		} else {
			obj='<object type="application/x-shockwave-flash" data="'+path+'" width="'+w+'" height="'+h+'"><param name="movie" value="'+path+'" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /></object>';
		}
		o.document.write('<html><body id="body_id" style="background-color:#000;margin:0;padding:0">'+obj+'</body></html>');
	}
	o.focus();
}