// glog.js
// for uj.glog

function show(id)
{
   var current = document.getElementById(id);
   current.style.display = 'inline';
}

function show_list(id)
{
   document.getElementById(id).style.display = 'block';
}

function hide(id)
{
   document.getElementById(id).style.display = 'none';
}