function toggleDiv(divName) {
	thisDiv = document.getElementById(divName);
	if (thisDiv) {
		if (thisDiv.offsetHeight > 0 || thisDiv.style.display == "block") {
			thisDiv.style.display = "none";
		}
		else {
			thisDiv.style.display = "block";
		}
	}
	else {
		errorString = "Error: Could not locate div with id: " + divName;
		alert(errorString);
	}
}

function whatsNew(number) {
	for ($i = 1; $i <= 9; $i++) {
		thisDiv = document.getElementById('whats_new'+$i);
		if (thisDiv) {
			if (thisDiv.offsetHeight > 0 || thisDiv.style.display == "block") {
				thisDiv.style.display = "none";
			}
			if ($i == number) {
				thisDiv.style.display = "block";
			}
		}
		else {
			errorString = "Error: Could not locate div with id: " + divName;
			alert(errorString);
		}
	}
}

function Hilite(name,over)
{
	if(window.document.images)
	{
		if (over)
			window.document.images[name].src = "images/" + name + "-on.gif";
		else
			window.document.images[name].src =  "images/" + name + ".gif";
	}
}