
// OPEN NEW PAGE, IN EXISTING WINDOW...

function do_home() {
	document.location.href = "index.php";
}

function do_faculty() {
	document.location.href = "c_faculty.php";
}

function do_editor() {
	document.location.href = "c_editor.php";
}

function do_psych() {
	document.location.href = "c_psych.php";
}

function do_writer() {
	document.location.href = "c_writer.php";
}

function do_books() {
	document.location.href = "c_books.php";
}

function do_links() {
	document.location.href = "c_links.php";
}

function do_contact() {
	document.location.href = "c_contact.php";
}


// OPEN NEW PAGE, IN NEW WINDOW...

// function do_links() {
// 	window.open ("c_contact.php");
// }

