if(!n_window) var n_window
function open_window(name,lnk,w,h){
	if(n_window) n_window.close();
		var html = '<html><head>\n<title>'+name+'</title>\n<link href="/1.css" rel=stylesheet type=text/css>';
		html +='</head>\n<body style="width:'+w+'px; margin-top:5px; background:#fff;">\n<center><img src="'+lnk+'"><br>\n<a href="javascript:this.close()">закрыть окно</a></center>\n</body></html>' ;
		n_window = window.open( "" , null, 'height='+h+'px,width='+w+'px,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes')

	if (n_window != null) {
		n_window.document.write(html);
		n_window.focus();
		return false;
		}
	}

