function img_blank (link, title, x, y)
{
	width0=50;
	height0=50;
	
	str='width='+width0+', height='+height0+', left='+x+', top='+y+',dependent=1,resizable=0,menubar=0,toolbar=0,location=0,scrollbars=0,status=0';
	win = window.open('','', str); 
	f=win.document;
	f.open();
	f.write("<html><head><meta http-equiv='Content-Type' content='text/html; charset=windows-1251'>");
	f.write("<title>"+title+"</title></head>");
	f.write("<body marginwidth='0' marginheight='0' topmargin='0' bottommargin='0' leftmargin='0' rightmargin='0'>");
	f.write("<img id='image' name='image' src='"+link+"' onLoad='self.resizeTo(document.image.width,document.image.height);'></body></html>");
}
