function htoggle(id) {
 if (id.style.visibility=="hidden") 
    {id.style.visibility="visible"}
 else 
    {id.style.visibility="hidden"}
}
