var hiding_panels__hideButton = "/includes/styles/theme2009/_structuredimages/personal/b_game_chiudi.gif";
var hiding_panels__showButton = "/includes/styles/theme2009/_structuredimages/personal/b_game_apri.gif";
var hiding_panels = new Array();

function hiding_panels__hide(objID,sender) {
 	sender.src = hiding_panels__showButton;
 	sender.onclick = function() {
		hiding_panels__show(objID,sender);
	}
	obj = document.getElementById(objID);
	obj.style.display = "none";
}
function hiding_panels__show(objID,sender) {
 	sender.src = hiding_panels__hideButton;
 	sender.onclick = function() {
		hiding_panels__hide(objID,sender)
	}
	obj = document.getElementById(objID);
	obj.style.display = "";
}