// JavaScript Document
// this script (called in all CONTENT pages but in no frameset/header/navigation pages)
// checks if the page 
	function contextifyContent() {
		if (document.location.href == window.parent.location.href) {
			var contentPage = document.location.href;
			var pos = contentPage.lastIndexOf("/");
			var setPage = contentPage.substring(pos + 1, contentPage.length);
			document.location.href = 'index.htm?page=' + setPage;
		}
	}
