
function ev_onfocus(obj) {
	if (obj.style) obj.style.backgroundColor='#FFC';
}

function ev_onblur(obj) {
	if (obj.style) obj.style.backgroundColor='#FFF';
}