function new_image_wnd( path, width, height ) {
	var wnd = open( '', 'none', 'width='+width+', height='+height+', resizable=1', 'replace=yes' );
	
	wnd.document.open();
	wnd.document.write(	'<script>function resize() { '+
//							' var img = document.getElementById( "img" ); '+
//							' var w = img.width; '+
//							' var h = img.height; '+
//							' if ( ( w > 10 && w <= 800 ) && ( h > 10 && h <= 600 ) ) '+
//								' window.resizeBy( w-800, h-600 ); '+
							' }</script>' );
	wnd.document.write('<body style="margin: 0; padding: 0;" onload="resize();" onclick="window.close();"><img id="img" src="'+path+'"></body>');
	wnd.document.close(); 
}