﻿
function highlight(obj) 
{
  obj.focus();
  obj.select();

}

function showDiv(divId){
        d = document.getElementById(divId);
        if (!d) return;
        d.style.display = '';
    }
    
function hideDiv(divId){
    d = document.getElementById(divId);
    if (!d) return;
    d.style.display = 'none';
}