function new_win_view(f,xx,yy,title){
myWin=open('','displayWindow','width='+(xx)+',height='+(yy)+',status=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes');
myWin.document.open();
myWin.document.write('<html><head><title>'+title+'</title></head>');
myWin.document.write('<body  BGCOLOR=#ffffff marginwidth=0 marginheight=0 leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0>');
myWin.document.write("<img src="+f+" width="+xx+" height="+yy+" hspace=0 vspace=0 border=0 alt='"+title+"'>");
myWin.document.write('</body></html>');
myWin.document.close();
myWin.focus();
}





function new_win_view_print(f,xx,yy,title){
myWin=open('','displayWindow','width='+(xx + 50)+',height='+(yy + 50)+',status=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes');
myWin.document.open();
myWin.document.write('<html><head><title>'+title+'</title>');
myWin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1251"></head>');
myWin.document.write('<style>@media print {#printer{display:none}}</style><body BGCOLOR=#ffffff marginwidth=0 marginheight=0 leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0>');
myWin.document.write('<div align="center"><a href="javaScript:window.print();">');
myWin.document.write("<img src="+f+" width="+xx+" height="+yy+" hspace=0 vspace=0 border=0 alt='"+title+"'>");
myWin.document.write('<br><span  id="printer">Печать </span> </div></a>');
myWin.document.write('</body></html>');
myWin.document.close();
myWin.focus();
}



function new_win_view_flash(f,xx,yy,title, printurl, prX, prY){
myWin=open('','display','width='+(xx)+',height='+(yy)+',status=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes');
myWin.document.open();
myWin.document.write('<html><head><title>'+title+'</title>');
myWin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1251"></head>');
myWin.document.write('<script type="text/javascript" src="/new_win.js"></script>');
myWin.document.write('<body BGCOLOR=#ffffff marginwidth=0 marginheight=0 leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0>');
myWin.document.write('<div align="center">');
myWin.document.write("<img src="+f+" width="+xx+" height="+yy+" hspace=0 vspace=0 border=0 alt='"+title+"'>");
myWin.document.write('<a href="'+ printurl +'" onclick="new_win_view_print(this.href,'+ prX +','+ prY +',\'Выставочный комплекс\'); return false">Версия для Печать </div></a>');
myWin.document.write('</body></html>');
myWin.document.close();
myWin.focus();
}


function new_win ( url, w, h, target) {
	if ( !w ) w = 550;
	if ( !h ) h = 365;
var win = window.open(url, target, 'width='+ (w + 50) +', height='+ (h + 120) +', toolbar=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=yes');
win.focus();
}
