function changeColor(id,color){
	
	if (document.getElementById) 
    	element = document.getElementById(id);
		
	else if (document.all)
		element = document.all[id];
		
	element.style.backgroundColor = color;
}