function toggleFold(id, objid)
{
    atag = document.getElementById(objid)
    target = document.getElementById(id)
    if (target.className == 'fold')
    {
        target.className = 'unfold';
        target.style.cssText += ';display:block;'
        atag.style.cssText += ';display:block;'
    }
    else
    {
        target.className = 'fold';
        target.style.cssText += ';display:none;'
        atag.style.cssText += ';display:block;'
    }
}
