////////////////
// NAVIGATION //
////////////////
// Function for opening a link in a pop-up window
function newWindow(url) {
  nameOfWindow = window.open(url, 'AHPopup', 'toolbar=yes, location=yes, status=yes, scrollbars=yes, directories=yes, resizable=yes, menubar=yes, width=800, height=600');
  nameOfWindow.focus();
}

// Function to go to a URL via JavaScript
function gotoURL(url) {
	document.location.href=url;
}

//////////////////
// CSS HANDLING //
//////////////////
// Function for changing the style sheet on a mouse over
function changeLink(newClass,id) {
	document.getElementById(id).className = newClass;
}
