function init(){
}

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