function procDivShow(obj)
{
    if(obj.style.display == 'none')
        obj.style.display = 'inline';
    else
        obj.style.display = 'none';
}
