function open_w(width,height,fpath)
{
width = 750;
height = 550;
dir="images/photo_n/news_big/";
newdoc=window.open('','','toolbar=no,location=no,status=no,menubar=no,resizable=no, directories=no, scrollbars=no,width='+width+', height='+height+', top=45, left=45');
newdoc.document.open();
newdoc.document.writeln('<html><head><title>Экспедиция Федора Конюхова</title></head>');
newdoc.document.writeln('<body style="margin:0;background-color:#FFFFFF"><table width=100% height=100%><td style="vertical-align:center; text-align:center"><img src="'+dir+fpath+'" border=0></td></tr></table></body></html>');

newdoc.document.close();
}
