<!--
function findHeight (objectID) {
	var object = document.getElementById('object');
	if (object.offsetHeight) 
		return object.offsetHeight;
		return (null);
}

function showDim (objectID) {
	heightObj = findHeight (objectID);
	var one = document.getElementById('telo');
	if(heightObj < 480) {
		heightObj = 480;
	}
	one.style.height = heightObj + 50 + 'px';
	}
//-->