function view(title,f,xx,yy){
	myWin=open('','displayWindow','width='+xx+',height='+(yy+80)+',status=no,toolbar=no,menubar=no,resizable=no,scrollbars=no, directories=no');
	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("<p style='font-size: 10px; font-family: Arial;' align=justify>" + title + "</p>");
	myWin.document.write('</body></html>');
	myWin.document.close();
	myWin.resizeTo(xx+10,yy+80);
	myWin.focus();
}

