<!-- Begin	//document.onmouseover = doOver;	//document.onmouseout  = doOut;	//document.onmousedown = doDown;	//document.onmouseup   = doUp;function doOver(e) {	if(document.all){		eventSource = event.toElement;	}	else if (document.getElementById){		eventSource = e.target;	}	var toEl = getReal(eventSource, "className", "menuButton");	if (toEl.className == "menuButton") {		makeRaised(toEl);	}	else {}}function doOut(e) {	if(document.all){		eventSource = event.fromElement;	}	else if (document.getElementById){		eventSource = e.target;	}	var fromEl = getReal(eventSource, "className", "menuButton");	if (fromEl.className == "menuButton") {		makeFlat(fromEl);	}	else {}}function doDown(e) {	if(document.all){		eventSource = event.srcElement;	}	else if (document.getElementById){		eventSource = e.target;	}	el = getReal(eventSource, "className", "menuButton");	if (el.className == "menuButton") {	makePressed(el)	}	else {}}function doUp(e) {	if(document.all){		eventSource = event.srcElement;	}	else if (document.getElementById){		eventSource = e.target;	}	el = getReal(eventSource, "className", "menuButton");	if (el.className == "menuButton") {	makeFlat(el);	}	else {}}function getReal(el, type, value) {	temp = el;	if ((temp != null) && (temp.tagName != "BODY") && (temp.tagName != "TABLE") && (temp.tagname != "form")) {		if (eval("temp." + type) == value) {			el = temp;			return el;		}		else{			temp = document.getElementById? temp.parentNode : temp.parentElement;			if (eval("temp." + type) == value) {				el = temp;				return el;			}		}	}	return el;}function makeRaised(el) {	with (el.style) {		background   = "#FFEF66";		borderTop    = "1px solid #FFFFFF";		borderRight  = "1px solid #451510";		borderBottom = "1px solid #451510";		borderLeft   = "1px solid #FFFFFF";	//	border		 = "1px outset buttonface";		paddingTop    = "0px";		paddingRight  = "0px";		paddingBottom = "2px";		paddingLeft   = "0px";		fontWeight = "700";		color = "#943223";	}}function makePressed(el) {	with (el.style) {		background   = "#CC9966";		borderTop    = "1px solid #666666";		borderRight  = "1px solid #FFFFFF";		borderBottom = "1px solid #FFFFFF";		borderLeft   = "1px solid #666666";		paddingTop    = "1px";		paddingRight  = "0px";		paddingBottom = "0px";		paddingLeft   = "0px";		fontWeight = "700";		color = "#FFEF66";	}}function makeFlat(el) {	with (el.style) {		background = "#FFCC66";		borderTop = "0px solid #943223";		borderRight = "0px solid #943223";		borderBottom = "1px solid #943223";		borderLeft = "0px solid #943223";		paddingTop    = "1px";		paddingRight  = "1px";		paddingBottom = "1px";		paddingLeft   = "1px";		fontWeight = "400";		color = "#333333";	}}document.write("<style>");document.write(".menuBar {width:165px; background: #FFFFFF; border-top: 1px solid #943223; border-left: 1px solid #943223; border-right: 1px solid #943223; border-bottom: 0px solid #943223; padding:0px; margin:0px;}");document.write(".menuButton {height: 17px; background: #FFCC66; border-bottom: 1px solid #943223; padding: 1px; margin:0px 0px 1px 0px; spacing: 0px; text-align: left; text-indent: 8px; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 11px; font-weight: normal; line-height: 13px; color: #333333; cursor: default; white-space: nowrap;}");document.write(".menuButton IMG {filter: gray();}");document.write(".deadButton {height: 18px; background: #F5F5F5; border-bottom: 0px solid #CCCCDF; padding: 1px; spacing: 0px; text-align: left; text-indent: 2px; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 11px; font-weight: bold; line-height: 13px; color: #000080; cursor: default; white-space: nowrap;}");document.write("</style>");document.close();	// End	// -->