// JavaScript Document
/*
window.onload = function() {
	var divObj = document.getElementById("gN4");	
	var subObj = document.getElementById("subBG");
	
	divObj.onmouseover = function() {
		this.className = "parentOn";
		subObj.className = "parentOn";
	}
	
	divObj.onmouseout = function() {
		this.className = "parent";
		subObj.className = "parent";
	}

	var gN6Obj = document.getElementById("gN5");
	
	gN6Obj.onmouseover = divObj.onmouseover;
	gN6Obj.onmouseout = divObj.onmouseout;
	
	subObj.onmouseover = divObj.onmouseover;
	subObj.onmouseout = divObj.onmouseout;
}
*/

function popUp4() {window.open("./book.html","window","width=690,height=620,scrollbars=1");}