function maxpic(picname,x,y,_dir) {
	var winx=600;
	var winy=500;
	var win = window.open('','',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,width="+winx+",height="+winy);
	win.document.open("text/html");
	with (win.document) {
		write("<html><head><title>Сайт Леонида Алёхина</title><script language='JavaScript'>self.focus()</script></head>");
		write("<body onload='this.resizeTo("+ x + "+90," + y + "+110);' bgcolor='#293133' leftmargin='40' topmargin='40' marginheight='40' marginwidth='40'>");
		write("<a href='#' onclick='window.close()'><img src='/_img/"+_dir+"/"+picname+"'");
		if(x>0 && y>0) write(" width="+x+" height="+y);
		write(" alt='' border='0'></a></body></html>");
		close();
	}
}

function openwin(page, x, y){
	window.open(page, "_blank", "width=" + x + ", height=" + y + ", Scrollbars=no,Resizable=yes")
}

function maxpic2(picname,x,y,_dir) {
    var scroll = "no";
	var winx=x;
	var winy=y;
	if(x>screen.width || y>screen.height-100) 
	{ 
	    scroll = "yes";
	    winx += 17;
	    winy = screen.height-100;
	}
	var win = window.open('','',"toolbar=no,location=0,directories=no,status=no,menubar=no,scrollbars="+scroll+",resizable=no,width="+(winx)+",height="+(winy));
	win.document.open("text/html");
	with (win.document) {
		write("<html><head><title>Сайт Леонида Алёхина</title><script language='JavaScript'>self.focus()</script></head>");
		write("<body bgcolor='#293133' style='padding:0;margin:0;'");
		write("<table cellpadding='0' cellspacing='0' border='0' style='padding:0;margin:0;'><tr><td align='center'>");
		write("<a href='#' onclick='window.close()'><img src='/_img/"+_dir+"/"+picname+"?v=1'");
	    write(" width="+x+" height="+y);
	    write(" alt='' border='0'></a>");
	    write("</td></tr></table>");
		write("</body></html>");
		close();
	}
}
