function new_win_view(f,xx,yy,title){
myWin=open('','displayWindow','width='+(xx+35)+',height='+(yy+35)+',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.resizeTo(xx+35,yy+35);
myWin.focus();}

function new_win_t_view(f,xx,yy,title,ttext){
myWin=open('','displayWindow','width='+(xx+35)+',height='+(yy+35+100)+',status=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes');
myWin.document.open();
myWin.document.write('<html><head><title>'+title+'</title><style>body, div, p, li, ul, ol{font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; font-size : 13px;} .t{padding-left: 7px; padding-right: 7px;}</style></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+"'><p class=t>"+ttext+"</p>");
myWin.document.write('</body></html>');
myWin.document.close();
myWin.resizeTo(xx+35,yy+35+100);
myWin.focus();}
