
	function toggleDiv(id){
	var elt = document.getElementById(id);
	elt.style.display = (elt.style.display == 'block')?'none':'block';
	}

