DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Toggle Display
// Just use this to toggle the display of your tag between "none" and "block"
function ToggleDisplay(source) {
obj = getElementById(source);
obj.style.display = (obj.style.display=='block')?obj.style.display='none':obj.style.display='block';
}





