function openTerms()
{
	newwin = window.open("terms-conditions.html","popup","width=400,height=450,scrollbars=yes");
}
function openPrivacy()
{
	newwin = window.open("privacy.html","popup","width=400,height=450,scrollbars=yes");
}
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");
	}
}