﻿// JScript File
// Anpassen der Höhe des Contents
function resizeHeight()
{
    var windowHeight = (document.documentElement && document.documentElement.clientHeight) || window.innerHeight || self.innerHeight || document.body.clientHeight;         
    var MenuHeight = windowHeight - 271;
    if (MenuHeight < 251) { MenuHeight = 251; }
    document.getElementById("ctl00_trMenu").style.height = MenuHeight + "px";
    
    var ContentHeight = windowHeight - 304;
    if (ContentHeight < 218) { ContentHeight = 218; }
    document.getElementById("ctl00_cphPage_dScroll").style.height = ContentHeight + "px";
    document.getElementById("ctl00_cphPage_dMain").style.height = ContentHeight + "px";     
    
    document.getElementById("ctl00_iBottom1").style.display = "inline";
    document.getElementById("ctl00_iBottom2").style.display = "inline";
    document.getElementById("ctl00_dFooter").style.display = "inline";
}    

// Druck Fenster öffnen
function OpenPrint(url) 
{
    popupWin = window.open(url,"popup","top=150,left=150,width=606,height=600,scrollbars=yes,resizable=yes");
    popupWin.focus();
}