function changeImage(imageName, imagePath) {
imageName.src = imagePath;
}

function showDiv(divId) {
	if (document.getElementById)
	{
		e = document.getElementById(divId);
		if (e.style.display == "none" | e.style.display == null | e.style.display == "")
		{
            e.style.display = "block";
		}
		else
		{
            e.style.display = "block";
		}
	}
}

function hideDiv(divId) {
	if (document.getElementById)
	{
		e = document.getElementById(divId);
		if (e.style.display == "block")
		{
            e.style.display = "none";
		}
		else
		{
            e.style.display = "none";
		}
	}
}

function hideAllDivs() {
	//If subitems are added to these sections, uncomment the div, otherwise it must be commented out
	//hideDiv('HomeDiv');
	hideDiv('AboutDiv');
	hideDiv('AcademicsDiv');
	hideDiv('AdmissionsDiv');
	hideDiv('AthleticsDiv');
	hideDiv('EventsDiv');
	hideDiv('LibraryDiv');
	hideDiv('OfficesDiv');

}

function Bookmark()
{
	if (document.all)
		window.external.AddFavorite(location.href,document.title);
	else
		alert("Sorry. Firefox/Netscape users must bookmark the pages manually by hitting <Ctrl-D>");
}

function openWindow(location, width, height, scrollbars)
{
	window.open(location, "dialog", "width=" + width + ",height=" + height + ",scrollbars=" + scrollbars + "");
}

