function passfocus (obj) {
	document.getElementById(obj).focus();
}

function focusout(obj) {
	obj.style.backgroundColor = "#2875bd";
}

function focusin(obj) {
	obj.style.backgroundColor = "#71b8fa";
}
