// JavaScript Document


//méretre ugró  iframe scriptje 2009.február 01.


function iFrameHeight() {
if(document.getElementById && !(document.all)) {
h = document.getElementById('TaroloIframe').contentDocument.body.scrollHeight;
document.getElementById('TaroloIframe').style.height = h + 10 +'px';
}
else if(document.all) {
h = document.frames('TaroloIframe').document.body.scrollHeight;
document.all.TaroloIframe.style.height = h + 10 +'px';
}
}

