function logoHover() {
	var cellArray = document.getElementById("logo").getElementsByTagName("a");
	for (x=0; x < cellArray.length; x++) {
		cellArray[x].style.textDecoration = "underline";
	}
}
function logoOut() {
	var cellArray = document.getElementById("logo").getElementsByTagName("a");
	for (x=0; x < cellArray.length; x++) {
		cellArray[x].style.textDecoration = "none";
	}
}
function goHome(inURL) {
	document.location = inURL;
}


var the24Win;

function newWindow(inURL) {

	if (!the24Win || the24Win.closed) {

		the24Win = window.open(inURL, "popup", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=800,height=600,top=50,left=100");
		the24Win.focus();

	} else {
		the24Win.location.href = inURL;
		the24Win.focus();
	}
}

function closethe24Win() {

	if (the24Win) {
		the24Win.close();
	}
}




