function Active(what) {
	if (!document.layers) {
		what.style.backgroundColor='#ffffff';
	}
}

function inActive(what) {
	if (!document.layers) {
		what.style.backgroundColor='#ccff99';	
	}
}
