function displayLengths() { iObj = document.getElementById("foo"); if (document.all) alert(iObj.currentStyle.fontSize); else alert(document.defaultView.getComputedStyle(iObj,"").getPropertyValue("font-size")); }