// JavaScript Document


//galéria iframe scriptje
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';
}
}
//galéria iframe scriptjének vége