function isFocus(obj) {
	if (obj)
		obj.style.backgroundColor = "#ffffcc";
}

function isBlur(obj) {
	if (obj)
		obj.style.backgroundColor = "#ffffff";
}

