<!--
function nw(file,x,y) {
var x=x;
var y=y;
var left=(screen.Width-x)/2;
var top=(screen.Height-y)/2;
var html ='<html>\n<head>\n<title>ЗАО &quot;Линекс&quot;</title>\n<style type="text/css">\nbody {margin:0;padding:0;}\n</style>\n</head>\n</html>\n<body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">\n<a href="#" onclick="window.close(); return false;"><img src="'+file+'" width="'+x+'" height="'+y+'" border="0" alt="Закрыть окно"></a>\n</body>\n</html>';
var win1=window.open("","ppp",'width='+x+',height='+y+',scrollbars=0,left='+left+',top='+top+'');
win1.document.open();
win1.document.write(html);
win1.document.close();
win1.focus();
}
//-->