function nascondi(id) {
	// rileva il browser
	HM_DOM = document.getElementById ? true : false;
	HM_IE  = document.all ? true : false;
	HM_NS4 = document.layers ? true : false;

	(HM_DOM) ? document.getElementById(id).style.visibility="hidden" :
		(HM_IE) ? document.all(id).style.visibility="hidden" : break;

	return false;
}
