<!-- build the pages for the images, so i don't have to have a page for each and every one.

function win(file,wid,hei,title) {
	thew = wid + 20;
	theh = hei + 20;
	newwin = window.open('','popup' ,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + thew + ',height=' + theh);
	newwin.document.write('<html><head><title>' + title + '</title>');
	newwin.document.writeln('<link rel="stylesheet" href="../stylish.css" type="text/css" media="screen">');
	newwin.document.writeln('</head>');
	newwin.document.writeln('<body bgcolor="#000000" text="#999999" link="#3399ff" vlink="#336699" alink="#cc0000" marginwidth="0" marginheight="0" leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0">');
	newwin.document.write('<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0"><tr align="center" valign="center"><td>');
 	newwin.document.write('<img src="' + file + '" width="' + wid + '" height="' + hei + '" class="fancy" style="margin:0px;" vspace="3" hspace="3" align="middle">');
	newwin.document.write('</td></tr></table>');
	newwin.document.write('</body></html>');
	newwin.document.close();
}

//-->