﻿// JScript File

function $(elementId){
    return document.getElementById(elementId);
}

function windowHeight()
{
    return (document.documentElement.clientHeight < 500) ? 500 : document.documentElement.clientHeight;
}

function resize()
{
    var wh = windowHeight();
    var dh = wh - 22-61-2;    
    var dhana = wh - 22-251-2; 
    var orta = $("orta");
    var ortaana = $("ortaana");
    if(orta != null)
    {
        orta.style.minHeight = dh + "px";
    }
    if(ortaana != null)
    {
        ortaana.style.minHeight = dhana + "px";
    }
    //alert(windowHeight());
}

window.onresize = resize;
window.onload = resize;

//document.observe("dom:loaded", function() {
//    resize();
//});

