// This javascript is only necessary because Netscape BUTCHERED the DOM standards, and in order to get the page looking even halfway descent, I have to re-size the three major sections.

function getObj(name) {
	return eval("document." + name);
}


function resizeEp() {
	if (navigator.appName == "Netscape") {
	// this dynamic sizing is only necessary in Netscape.
		Horiz = window.innerWidth;

		thisLEFT = getObj("LeftCol");
		thisRIGHT = getObj("RightCol");
		thisCENTER = getObj("CenterCol");

		thisLEFT.clip.width = Horiz * .15;
		thisRIGHT.clip.width = Horiz * .25;
		thisRIGHT.left = Horiz * .78;

	}
}

function resize () {
	if (navigator.appName == "Netscape") {
	// this dynamic sizing is only necessary in Netscape.
		Horiz = window.innerWidth;

		thisLEFT = getObj("LeftCol");
		thisRIGHT = getObj("SlimRight");
		thisCENTER = getObj("BigCenter");

		thisLEFT.clip.width = Horiz * .15;
		thisRIGHT.clip.width = Horiz * .05;
		thisRIGHT.left = Horiz * .90;
	}
}



function openImage(imageName) {
	fullImage = "images/" + imageName + ".jpg"
	imageWindow = window.open(fullImage, 'imageWin', 'width=320,height=240')
}