function fSimulaMaxHeightNoIE () {
       objIds = new Array ('termos')
       maxHeight = 468
       for(var x=0;x<objIds.length;x++) {
               obj = document.getElementById(objIds[x])
               if(obj.offsetHeight > maxHeight) obj.style.height=maxHeight+"px"
       }
}
function atribuiEvento(obj, evType, fn){
       if (obj.addEventListener) obj.addEventListener(evType, fn, true)
       if (obj.attachEvent) obj.attachEvent("on"+evType, fn)
}
if (navigator.userAgent.indexOf('MSIE')!=-1) atribuiEvento(window,"load",fSimulaMaxHeightNoIE)
