var ie5= (document.getElementById && document.all);
var ns6= (document.getElementById && !document.all);
function changeBG(obj, bgColor) {
   	if(ie5 || ns6){
	    	obj.style.backgroundColor = bgColor;
	}}

