// JavaScript Document
function getcurrentyear()
{
var cdate = new Date();
var cyear = cdate.getYear();
document.write (' '+cyear+' ');
}
function pageload2()
{
if (self == top) 
	{document.location.replace('index.htm?' + document.location.href)}
else
	{parent.nav.location.href = 'menu1.htm' }		// make  sure correct nav file is displayed if page opened within frame document
}

function pageload()
{
if (self == top) 
	{document.location.replace('index.htm?' + document.location.href)}
else
	{parent.nav.location.href = 'menu2.htm' }		// make  sure correct nav file is displayed if page opened within frame document
}

function fullsizepic(strfile,strtitle)
{
var strURL = 'picsdisplay.htm?file='+strfile+'&title='+strtitle;
var objPhotodisplay = window.open(strURL,'Photodisplay','toolbar=no, dependent=yes, scrollbars=yes');
objPhotodisplay.focus(); 
//return false;
}
