function expandcollapse (postid)
{
    var whichpost = document.getElementById(postid);
    if (whichpost.style.display=="inline")
    {
        whichpost.style.display = "none";
    }
    else
    {
        whichpost.style.display = "inline";
    } 
}
