function shw(div,nascondi) {
	document.getElementById(nascondi).style.display = 'none';
	document.getElementById(div).style.display = 'block';
}
