function maxpic(picname,img_width,img_height) {
 var x,y;
 if (img_width > img_height){
 	x=400;
	y=260;
 }
 else{
 	x=260;
	y=400;
 }
 var win = window.open('','_photo1',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width="+x+",height="+y);
 win.document.open("text/html");
 with (win.document) {
  write("<html><head><title>ChesterPub&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</title><script language='JavaScript'>self.focus();</script></head><body bgcolor='#FFFFFF' bottommargin='0' topmargin='0' leftmargin='0' rightmargin='0' marginheight='0' marginwidth='0'><table width='"+x+"' height='"+y+"' cellspacing='0' cellpadding='0' border='0'><tr><td><a href='#' onclick='window.close()'><img src='/imgs/"+picname+"' alt='Закрыть' border='0' width='"+x+"' height='"+y+"'></a></td></tr></table></body></html>");
  close();
 }
} 

function maxpic2(picname,titl,winx,winy) {
 var win = window.open('','',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+(winx)+",height="+(winy));
 win.document.open("text/html");
 with (win.document) {
  write("<html><head><title>"+titl+"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</title><script language='JavaScript'>self.focus()</script></head><body bgcolor='#FFFFFF' leftmargin=0 topmargin=0 marginheight=0 marginwidth=0><a href='#' onclick='window.close()'><img src='"+picname+"'");
  write(" alt='закрыть' border='0'></a></body></html>");
  close();
 }
}

