function openwin(file,w,h,picname) {
if  (navigator.appName == 'Netscape') {var w_win=w; var h_win=h+25; win=window.open('','file','toolbar=no,location=no,directories=no,status=no;menubar=no,scrollbars=no,resizeable=yes,width=0,height=0');}
else {var w_win=w+10; var h_win=h+50; win=window.open('','file','toolbar=no,location=no,directories=no,status=no;menubar=no,scrollbars=no,resizeable=yes,width=1,height=1');}
var move_x=(screen.width/2)-(w_win/2);var move_y=(screen.height/2)-(h_win/2);
win.moveTo(move_x,move_y);
win.resizeTo(w_win,h_win);
win.moveTo(move_x,move_y);
win.document.open();win.document.close();
win.document.writeln("<HTML><head>");
win.document.writeln("<style>.a8 {font-size: 8pt; font-weight: bold; color:darkorange; text-decoration: none; font-family: sans-serif;}</style>");
win.document.writeln("<title>"+picname+"</title></head><body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 onload=window.focus() bgcolor=white>");
win.document.writeln("<div align=center><img src=img/vos/"+file+".jpg width="+w+" height="+h+" alt="+picname+">");
win.document.writeln("<a title='Закрыть окно' href=javascript:window.close() class=a8>Закрыть окно</a></div>");
win.document.writeln("</body></HTML>");
}
