function change_status(id)
{
    var div = document.getElementById(id);

    if (div.style.display == "inline")
        div.style.display = "none";
    else
        div.style.display = "inline";
}