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