function high(id) { 
	
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.bgcolor = '#3399FF';
	} else { 
		if (document.layers) {	
			document.id.bgcolor = '#3399FF';				
		} else {
			document.all.id.style.bgcolor = '#3399FF';
		}
	}
}

function unhigh(id) { 
	
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.background-color = '';
	} else { 
		if (document.layers) {	
			document.id.background-color = '';				
		} else {
			document.all.id.style.background-color = '';
		}
	}
}
