
function doLoad() {
}


	
function doResize() {
 
}

function whatSection() {
	if (typeof section == "undefined") return null;
	return section;
}

function whatSubSection() {
	if (typeof subSection == "undefined") return null;
	return subSection;
}

function whatSubSubSection() {
	if (typeof subSubSection == "undefined") return null;
	return subSubSection;
}

function whatSubSubSubSection() {
	if (typeof subSubSubSection == "undefined") return null;
	return subSubSubSection;
}


function goToPage(newLocation) {
	window.location = newLocation;
}

function standardOver(t) {
	t.className += " " + t.className + "Over";
}

function standardOut(t) {
	var classNames = t.className.split(" ");
	t.className = classNames[0];
}

function getElement(id) {
	var e = document.getElementById(id);
	
	if (!e) alert('bad element id: ', id);
	
	return e;
}