// Keeps parent frame from being loaded in child frame.
if (top != self) {
	top.location = location
}
// Writes copyright date on bottom of pages
function date() {
	document.write("2006-2008")
	document.close()
}