<!--
function colorChange(id, x) {
	if (x=="on") {
	document.getElementById(id).style.cursor='pointer';
	document.getElementById(id).style.backgroundColor='#eaeaea';
	} else {
	document.getElementById(id).style.cursor='auto';
	document.getElementById(id).style.backgroundColor='#f5f9e9';
	}
}
-->

