// JavaScript Document
function img_wo(url,name,w,h)
{
	var props = "scrollbars=no,width="+ (w) +",height="+ (h) +",status=1";
	var wndUrl = url;
	var wndName = name;
	my_window = window.open("", "", props);
	my_window.document.open();
	my_window.document.writeln("<title>\n" +  wndName + "\n</title>\n");
	my_window.document.writeln("<HTML><BODY onBlur='self.close();'>\n");
	my_window.document.writeln("<img src=" +  url + ">");
	my_window.document.writeln("</BODY></HTML>");
	my_window.document.close();
};