
function open_picture(u,w,h,max_w,max_h) {
	if (window.screen) {
		max_w = window.screen.width - 20;
		max_h = window.screen.height - 53;
	}
	win_w = w + 0;
	win_h = h + 0;
	if (win_w > max_w) win_w = max_w;
        if (win_h > max_h) win_h = max_h;
  win = window.open('','',"width=" + win_w + ", height=" + win_h + ",scrollbars=auto,resizable=1,resizable=no");
	win.document.open();
  win.document.write('<body bgcolor=#F1F2F2 leftMargin=0 rightMargin=0 topMargin=0 marginwidth=0 marginheight=0 style="background:#fff url(\''+u+'\') no-repeat">');
  if(w>=200)win.document.write('<div style="position:absolute;right:0;bottom:20px"><img width="171" height="21" src="/imgs/stamp2.gif"></div>');
  //win.document.write('<div style="width:' + w + 'px;height:' + h + 'px"></div>');
  win.document.write('<img width=' + w + ' height=' + h + ' src="/imgs/x.gif">');
	win.document.close();
 	win.focus();
        return(win);
}

function big(w,h,s,n)
{
  win=window.open(null,null,'top=20,left=20,width='+w+',height='+h+',status=no,toolbar=no,menubar=no,location=no,resizable=no');
  win.document.write("<html><head><title>Карта проезда к СЦ № "+n+"</title></head><body style='margin:0;padding:0'><img width='"+w+"' height='"+h+"' src='"+s+"' /></body></html>");
}

