function toggle_info(elem) {
	if (elem.style.display=='' ) {
		elem.style.display='block';
	}
	else 
		elem.style.display='';
}