var w;

function popimg(f,width,height,tit,leftpx,toppx,scrollbar,resizabl)
{
	if (w && ! w.closed) w.close();

	w = window.open("","","width="+width+",height="+height+",scrollbars="+scrollbar+",toolbar=0,status=0,resizable="+resizabl+",left="+leftpx+",top="+toppx+"");

	if (typeof(tit) == "undefined" || tit == "") tit = f.substring(f.lastIndexOf("/")+1);

	w.document.writeln("<html><head><title>"+tit+"</title></head><body topmargin=0 leftmargin=0 marginwidth=0>");
	w.document.writeln("<img src='"+f+"'>");
	w.document.writeln("</body></html>");
	w.document.close();
}