function resize_iframe(frame_id)
{
    var height=window.innerHeight;//Firefox
    if (document.body.clientHeight)
    {
        height=document.body.clientHeight;//IE
    }
    document.getElementById(frame_id).style.height=parseInt(height-
    document.getElementById(frame_id).offsetTop-8)+"px";
    
}