function hide(the_id){document.getElementById(the_id).style.display="none";} // Hides an object
function show(the_id){document.getElementById(the_id).style.display="block";} // Displays a hidden object