function toggle(elmtid)
{
var target = document.getElementById(elmtid);
    if (target.style.display == "" || target.style.display == "block")
    {
        target.style.display = "none";
    }	
    else
    {
        target.style.display = "block";
    }

}
