// JavaScript Document
function sessionWindow(theURL,winName) { //v2.0
	window.open(theURL,winName,'height=400,width=350');
}
function setCellColor(id, color, origColor) {
	if (document.getElementById(id).bgColor == color) {
		document.getElementById(id).bgColor = origColor;
	} else {
		document.getElementById(id).bgColor = color;
	}
}
