function showhide_panel(id){swap = document.getElementById(id);if (swap.style.display == "none"){showpanel(id);}else{hidepanel(id);}}
function showpanel(id){swap = document.getElementById(id);textlabel = document.getElementById(id+"_status");swap.style.display = "";textlabel.src = mediaserver_path+"/_includes/images/buttons/button_hide.gif";}
function hidepanel(id){swap = document.getElementById(id);textlabel = document.getElementById(id+"_status");swap.style.display = "none";textlabel.src= mediaserver_path+"/_includes/images/buttons/button_more.gif";}