<!-- hide from old browsers
/*************************************************************************
    
*************************************************************************/
function inherit(objidParent,objidChild) {
	if (document.layers) {
		alert('sorry, no pretty layouts for netscape 4');
	}
	else if (document.getElementById) {
		Parent = document.getElementById(objidParent);
		Child = document.getElementById(objidChild);
		//Grandchild = document.getElementById(objidGrandchild);
		if (Child.offsetHeight < Parent.offsetHeight) {
			//alert("ingrandisco");
			Child.style.height = Parent.offsetHeight + 'px';
			//Grandchild.style.display = 'block';
		}
		return true;
	}
} 

 
// stop hiding -->
