function togglenext(link){ target = link.nextSibling; if(target.style){ if( target.style.display=='block'){ target.style.display='none'; } else { target.style.display='block'; } } }