// JavaScript Document
var theID=null;
var dom=null;
var oldDom=null;
function showM(theID) {
	dom = document.getElementById(theID).style;
	if(oldDom) {
		if(oldDom != dom) {
		oldDom.display = 'none';
		}
	}
	dom.display = 'inline';
	oldDom = dom;
}	
function mouseOver(theID) {
	document.getElementById(theID).style.backgroundColor = '#CC6666';
}
function mouseOut(theID) {
	document.getElementById(theID).style.backgroundColor = '#CC0000';
}
function clickOff() {
	if(oldDom) {
	oldDom.display = 'none';
	}
	else {
		return 0;
	}
}