function launchTourWindow()
{
	var remote = open("tour.aspx", "Tour", "height=400,width=380,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0");
	if (remote.opener == null)
	{
		remote.opener = window;
		remote.opener.name = "narrowscreektour";
		return remote;
	}
}

function launchDirectionsWindow()
{
	var remote = open("map.aspx", "Directions", "height=435,width=525,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0");
	if (remote.opener == null)
	{
		remote.opener = window;
		remote.opener.name = "narrowscreekdirections";
		return remote;
	}
}

function getYear()
{
	var today = new Date();
	return today.getYear();
}