﻿function setFooter()
{
    var footer = document.getElementById("footer");
    var result = document.getElementById("result");
    var tblcontent = document.getElementById("tblcontent");
    if (result != null){
        var heightTable = result.clientHeight + 300;
        if (navigator.appName == 'Microsoft Internet Explorer'){       
            footer.style.height = '0px';
        }
        tblcontent.style.height = heightTable + 'px';
        
    }
}


function setAccusedAuthor(name){
    var txt = document.getElementById("ctl00_cphContent_txtAccused");
    //Put the name of the accused in the textbox
    txt.value = name;
    
    //Hide the lightview
    Lightview.hide()
}

function setAuthor(name){
    var txt = document.getElementById("ctl00_cphContent_txtAuthor");
    //Put the name of the accused in the textbox
    txt.value = name;
    
    //Hide the lightview
    Lightview.hide()
}

function test(id){
    
    //Hide the lightview
    Lightview.show({ href: id, rel: 'inline', options: { autosize: true } });
}