function picview(u,w,h)
{
	picwin = window.open("","picwin","width="+w+",height="+h+",left=30,top=50");
	picwin.document.open();
	picwin.document.write('<html><title>HUMMER - nothing like else</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
	picwin.document.write('<img src="'+u+'" width="'+w+'" height="'+h+'" border="0">');
	picwin.document.write('</body></html>');
	picwin.document.close();
	picwin.focus();
}

function txtview(u)
{
    txtwin = window.open(u + ".html","arwin","width=760,height=380,left=60,top=60,scrollbars=yes");
    txtwin.focus();
}

