function show (name){
	var toShow = document.getElementById(name);
	if(toShow.style.display == "block"){
		toShow.style.display = 'none';
	}else{
		toShow.style.display = 'block';
	}
}