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 newWin ( url, w, h, target ) {
	if ( !url ) return true;
	if ( !w ) w = 550;
	if ( !h ) h = 365;
	if ( !target ) target = '_blank'; 

var win = window.open(url, target, 'width='+w+', height='+h+', toolbar=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=yes');
win.focus();
return false;

}


function create_win(xx,yy,ttext)
{
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></head>');
myWin.document.write("<body style='padding:20px 0 0 20px;margin:0;text-align:justfy;background:#ffeaff url(/images/bg_center.jpg) top center repeat-x;'>");
myWin.document.write(""+ttext+"");
myWin.document.write('</body></html>');
myWin.document.close();
myWin.resizeTo(xx+35,yy+35+100);
myWin.focus();}
