function changeInputBgc(obj, bgStatus) {
	if(bgStatus == '0') {
		obj.style.backgroundColor = "#FFFFFF";
	} else if(bgStatus == '1') {
		obj.style.backgroundColor = "#FFFFCC";
	}
}
