function onFocus(whom)
{
    whom.className = 'active_input';
}

function onBlur(whom)
{
    whom.className = 'inactive_input';
}
