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