function enlarge(title, image)
{
	myWin=open("","","width=1,height=1,scrollbars=0,resizable,menubar=0,status=0");
	// открываем документ
	myWin.document.open(); // создаём документ
	myWin.document.write("<html><head><title>"+title+"</title><SCRIPT LANGUAGE='JavaScript' SRC='java/code.js'></SCRIPT>");
	myWin.document.write("<head><body leftMargin=0 topMargin=0 marginheight=0 marginwidth=0 onload='resize()'><center>");
	myWin.document.write("<a href=close><img src='images/galery/full/"+image+"' OnClick='self.close()' border=0></a>");
	myWin.document.write("</font></body></html>");
	myWin.document.close(); // закрываем документ, но не окно
}
function resize()
{
	resizeTo((document.images['0'].width+30),(document.images['0'].height+60));
}
