function focusIt(obj){
 obj.style.border = 'solid 1px red';
}

function unfocusIt(obj){
 obj.style.border = 'solid 1px #4784A6';
}
