state = new Array();

function showhide(s) {

	if (state[s] != 'block') {
		 state[s] = 'block';
	} else {
		 state[s] = 'none';
	}
		
	maxwell_smart = document.getElementById(s);
	maxwell_smart.style.display = state[s];
}
