// JavaScript Document
function openPage(page) {
	document.location.href = page;
}
function returnHome() {
	document.location.href = "index.html";
}

