function showDiv(id)
{
    document.getElementById(id).style.visibility = 'visible';
}
function hideDiv(id)
{
    document.getElementById(id).style.visibility = 'hidden';
}
