<!--
function getNum() {
	var thisPage = location.href.substring((location.href.lastIndexOf("/"))+1);
	var thisPage = thisPage.split("-");
	var thisNum = thisPage[1].split(".");
	return thisNum;
}
function nextPage() {
	var thisPage = location.href.substring((location.href.lastIndexOf("/"))+1);
	var thisPage = thisPage.split("-");
	var thisNum = thisPage[1].split(".");
	var nextNum = parseFloat(thisNum[0])+1;
	var nextPage = thisPage[0]+"-"+nextNum+".html";  
	location.href = nextPage;
}
function prevPage() {
	var thisPage = location.href.substring((location.href.lastIndexOf("/"))+1);
	var thisPage = thisPage.split("-");
	var thisNum = thisPage[1].split(".");
	var nextNum = parseFloat(thisNum[0])-1;
	var prevPage = thisPage[0]+"-"+nextNum+".html";  
	location.href = prevPage;
} 
function returnHome() {
	var agree = confirm("Are you sure you want to close this window and return to the LMS?");
	if (agree) {
		window.close();
	}
} 
function openTOC() {
	window.open('toc.html','TOC','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=385,height=300');
}  
//-->
