function openTerms()
{
	newwin = window.open("terms.html","popup","width=400,height=350,scrollbars=yes");
}
function openPrivacy()
{
	newwin = window.open("privacy.html","popup","width=400,height=350,scrollbars=yes");
}
function openMap()
{
	newwin = window.open("map.html","popup","width=568,height=342,scrollbars=no");
}
function navOver(imgName)
{
	var theImage = document.getElementById(imgName);
	
	if(theImage.src.indexOf("_off.gif") != -1)
	{
		theImage.src = theImage.src.replace("_off.gif","_on.gif");
	}
	
	else
	{
		theImage.src = theImage.src.replace("_on.gif","_off.gif");
	}
}
