<!-- hide from old browsers
/*************************************************************************
    
*************************************************************************/
function inherit(objidParent,objidChild, objidBrother,objidGrandchild) {
	if (document.layers) {
		alert('sorry, no pretty layouts for netscape 4');
	} else if (document.getElementById) {
		Parent = document.getElementById(objidParent);
		Child = document.getElementById(objidChild);
		Brother = document.getElementById(objidBrother);
		Grandchild = document.getElementById(objidGrandchild);
		
		if (Child.offsetHeight > Brother.offsetHeight){
			Parent.style.height = (Child.offsetHeight +32) + 'px';
			Grandchild.style.display = 'block';
		} else {
			Parent.style.height = (Brother.offsetHeight +32) + 'px';
			Grandchild.style.display = 'block';
		}
	
		return true
	}
} 
function Evidenzia(DaEv) {
if (document.layers) {
		alert('sorry, no pretty layouts for netscape 4');
	}
	else if (document.getElementById) {
		MItem = document.getElementById(DaEv);
		MItem.style.border = '#909090 1px solid';
		MItem.style.background = '#1C2935';
	}
} 
// stop hiding -->