function PhotoMenu( year )
{

document.write('<BR>');
document.write('<TABLE WIDTH="1%" BORDER="0"><TR>');
document.write('<TD ALIGN="right"><IMG SRC="../../images/footer-left.gif" WIDTH="71" HEIGHT="16"></TD>');
document.write('<TD NOWRAP WIDTH="1%" ALIGN="center">. ');

if (year != 2007) { document.write('<A CLASS="footerLink" HREF="../../archive/2007/photos.html" TARGET="main">2007</A> . '); }
if (year != 2006) { document.write('<A CLASS="footerLink" HREF="../../archive/2006/photos.html" TARGET="main">2006</A> . '); }
if (year != 2005) { document.write('<A CLASS="footerLink" HREF="../../archive/2005/photos.html" TARGET="main">2005</A> . '); }
if (year != 2004) { document.write('<A CLASS="footerLink" HREF="../../archive/2004/photos.html" TARGET="main">2004</A> . '); }
if (year != 2003) { document.write('<A CLASS="footerLink" HREF="../../archive/2003/photos.html" TARGET="main">2003</A> . '); }
if (year != 2002) { document.write('<A CLASS="footerLink" HREF="../../archive/2002/photos.html" TARGET="main">2002</A> . '); }
if (year != 2001) { document.write('<A CLASS="footerLink" HREF="../../archive/2001/photos.html" TARGET="main">2001</A> . '); }
if (year != 2000) { document.write('<A CLASS="footerLink" HREF="../../archive/2000/photos.html" TARGET="main">2000</A> . '); }
if (year != 1999) { document.write('<A CLASS="footerLink" HREF="../../archive/1999/photos.html" TARGET="main">1999</A> . '); }
if (year != 1998) { document.write('<A CLASS="footerLink" HREF="../../archive/1998/photos.html" TARGET="main">1998</A> . '); }

document.write('</TD>');
document.write('<TD ALIGN="left"><IMG SRC="../../images/footer-right.gif" WIDTH="71" HEIGHT="16"></TD>');
document.write('<TR></TABLE>');
document.write('<BR>');

}


function SmallWindow( width, height, htmlFile, linespacing )
{
	var RMFWindow;

	var today = new Date();
	var hours = today.getHours();
	var minutes = today.getMinutes();
	var seconds = today.getSeconds();
	var wnd = hours + "_" + minutes + "_" + seconds;

	width = width + 20;
	height = height + (linespacing * 20) + 60;  //25
	
	if (height >= window.screen.availHeight || width >= window.screen.availWidth)
	{
		if (height >= window.screen.availHeight)
		{
			height = window.screen.availHeight - 40;
		}
	
		if (width >= window.screen.availWidth)
		{
			width = window.screen.availWidth - 40;
		}
		width = width + 20;
	    	RMFWindow = window.open("photos/"+htmlFile, wnd, "width=" + width + ",height=" + height + ",resizable=yes,toolbar=no,scrollbars=yes,left=0,top=0");
	}
	else
	{
	    	RMFWindow = window.open("photos/"+htmlFile, wnd, "width=" + width + ",height=" + height + ",resizable=yes,toolbar=no,scrollbars=no,left=0,top=0");
	} 
    	//if (RMFWindow.focus!=null) { RMFWindow.focus() }
}
