<!-- Begin	document.onmouseover = doOver;	document.onmouseout  = doOut;	document.onmousedown = doDown;	document.onmouseup   = doUp;function doOver() {	var toEl = getReal(window.event.toElement, "className", "menuButton");	if (toEl.className == "menuButton") {		makeRaised(toEl);	}	else {}}function doOut() {	var fromEl = getReal(window.event.fromElement, "className", "menuButton");	if (fromEl.className == "menuButton") {		makeFlat(fromEl);	}	else {}}function doDown() {	el = getReal(window.event.srcElement, "className", "menuButton");	if (el.className == "menuButton") {	makePressed(el)	}	else {}}function doUp() {	el = getReal(window.event.srcElement, "className", "menuButton");	if (el.className == "menuButton") {	makeFlat(el);	}	else {}}function getReal(el, type, value) {	temp = el;	while ((temp != null) && (temp.tagName != "BODY") && (temp.tagname != "form")) {		if (eval("temp." + type) == value) {			el = temp;			return el;		}		temp = temp.parentElement;	}	return el;}function makeRaised(el) {	    with (el.style) {		background   = "#324696";		borderTop    = "1px solid #324696";		borderRight  = "1px solid #324696";		borderBottom = "1px solid #324696";		borderLeft   = "1px solid #324696";	//	border		 = "1px outset buttonface";		paddingTop    = "0px";		paddingRight  = "0px";		paddingBottom = "2px";		paddingLeft   = "0px";		color = "#FFFFFF";	}}function makePressed(el) {	with (el.style) {		background   = "#333366";		borderTop    = "1px solid #333366";		borderRight  = "1px solid #333366";		borderBottom = "1px solid #333366";		borderLeft   = "1px solid #333366";		paddingTop    = "1px";		paddingRight  = "0px";		paddingBottom = "0px";		paddingLeft   = "0px";		color = "#FFFFFF";	}}function makeFlat(el) {	with (el.style) {		background = "#FFFFFF";		borderTop = "0px solid #324696";		borderRight = "0px solid #324696";		borderBottom = "1px solid #324696";		borderLeft = "0px solid #324696";		paddingTop    = "1px";		paddingRight  = "1px";		paddingBottom = "1px";		paddingLeft   = "1px";		color = "#324696";	}}document.write("<style>");document.write(".menuBar {width:160px; background: #000066; border-top: 1px #000066 solid; border-left: 1px #000066 solid; border-right: 1px #000066 solid; padding:0px;}");document.write(".menuButton {height: 17px; background: #FFFFFF; border-bottom: 1px #324696 solid; padding: 1px; spacing: 0px; text-align: left; text-indent: 12px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; line-height: 12px; color: #324696; cursor: default; white-space: nowrap;}");document.write(".menuButton IMG	{filter: gray();}");document.write(".deadButton {height: 17px; background: #CE0202; border-bottom: 1px #CE0202 solid; padding: 1px; spacing: 1px; text-align: center; text-indent: 2px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; line-height: 12px; color: #FFFFFF; cursor: default; white-space: nowrap;}");document.write("</style>");document.close();	// End	// -->