
var browser_name = navigator.appName;
var stat=0;
var win;
var wnd;
function w(name,W,H){
		   win=window.open("", "picture", "width="+W+", height="+H+",top="+(screen.height-550)/2+",left="+(screen.width-510)/2+",toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes"  );
		   win.document.write("<html><head><title></title><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><link rel=stylesheet type='text/css' href='css/style.css'></head>\n");
		   win.document.write("<body topmargin='0' bottommargin='0' leftmargin='0' rightmargin='0' marginheight='0' marginwidth='0' class='bg'>\n" );
		   win.document.write("<table width=100% height=100% border=0 cellpadding=0 cellspacing=0>\n");
		   win.document.write("<tr><td align=center><a href='javascript:window.close();'><img src='/"+name+"' border=0 alt=''></a></td></tr>\n");
		   win.document.write("</table>\n");
		   win.document.write("</body></html>\n");
		   win.document.close();
		   win.focus();
} 	

function url_new(dest) 
	{ 
		//window.location = dest; 
  wnd=window.open(dest,"" );

	}  
  
function w3(url,W,H){
  if (stat==1&&browser_name == "Microsoft Internet Explorer" ){ win.close();}
   win=window.open( url, "picture1", "width="+W+",height="+H+",left="+(screen.width-W)/2+",top="+(screen.height-H)/2+",toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no"  );
   win.focus();
   stat=1;
 }	 
