// JavaScript Document

var storedBackColor = "#C2D2C2";
var tempColor = "#000000;"

function overTopMenu(who) {
	theshiznit = document.getElementById(who);
	tempColor = theshiznit.style.backgroundColor;
	theshiznit.style.backgroundColor = storedBackColor;
	storedBackColor = tempColor;
}

function popup(what, where, w, h) {
	var props = "personalbars=no, directories=no, width=" + w + ", height=" + h + ", location=no, menubar=no, resizable=no, status=no, toolbar=no";
	window.open(what, where, props);
}