function chgBg(obj,color){
	if (document.all || document.getElementById)
	  obj.style.backgroundColor=color;
	else if (document.layers)
	  obj.bgColor=color;
	}
	
		
function copyrightYear(){
	var days = new Array("","Sun","Mon","Tues","Wed","Thurs","Fri","Sat");
	var months = new Array("","Jan","Feb","Mar","Apr","May","June","July","Aug","Sept","Oct","Nov","Dec"); 
	var dateObj = new Date()
	var wday = days[dateObj.getDay() + 1]
	var lmonth = months[dateObj.getMonth() + 1]
	var date = dateObj.getDate()
	var year = dateObj.getFullYear()
	//document.write(wday + ", " + lmonth + " " + date)
	document.write(year)
	}