<script type="text/javascript">
window.onload = function(){
var div = document.getElementById('div'),
computed = parseInt(window.getComputedStyle ? getComputedStyle(div, null).height : div.currentStyle.height);
div.style.height = '';
alert(computed < div.offsetHeight ? 'больше!' : 'меньше?');
};
</script>
<div id="div" style="
position: relative;
overflow: hidden;
width: 50px;
height: 50px;">
*!*
<p style="height: 100px;">******************************************</p>
*/!*
</div>