/**
 * site_iframe_resize.js - JavaScript Functions.
 * @package site_iframe_resize.js
*/
<!--
function resize_iframe() { 
    //resize the iframe according to the size of the
    //window (all these should be on the same line)
    var opera = (navigator.userAgent.indexOf("Opera") >= 0)? true: false;
    var ie = (document.all && !opera)? true: false;

    //alert("document.body.offsetHeight : "+document.body.offsetHeight+"\n\ndocument.getElementById(glu).offsetTop : "+document.getElementById("glu").offsetTop+"\n\nwindow.innerHeight : "+window.innerHeight);
    if (parseInt(navigator.appVersion)>3) { 
        if (ie) { 
            //alert(document.documentElement.clientHeight);
            document.body.scroll='no'; 
            document.getElementById('glu').height = document.documentElement.clientHeight-100;
        }
        else { 
            //alert(window.innerHeight);
            document.body.scroll='no';
            document.getElementById('glu').height = window.innerHeight-100;
            //document.getElementById('glu').height = document.body.offsetHeight
        }
    }
}
window.onresize=resize_iframe;
-->
