// display the file

function displayjpg(image) {
	win = window.open('','FullImage','toolbar=no,status=0,width=320,height=340');
	with (win.document) {
		write('<html><head><LINK REL=STYLESHEET TYPE="text/css" HREF="lh.css"></head>' );
		write('<body onLoad="resizeTo(document.myimg.width+50,document.myimg.height+120);" class="frame">');
		write('<center><table border=3><tr><td>');
		write('<img name="myimg" src="' + image + '">');
		write('</td></tr></table></center>');
		write('<center><br><a href="#" onClick="window.close(); return false;" class="link">Close</a></center>');
		write('</body></html>');
		close();
	}
	win.focus();
}

// display the info
function displayinfo(ref,w,h) {
	win = window.open(ref,'FullInfo','toolbar=no,status=0,width='+w+',height='+h);
	win.focus();
	return(false);
}
