function toggle(it)
{
        it.style.display=(it.style.display=="block")?"none":"block";
}
