﻿function MakeLayout(doc)
{
    var bodyContent = doc.getElementById("bodycontent");
    var navigation = doc.getElementById("navigation");
    var logo = doc.getElementById("logo");
    var bodyleft = doc.getElementById("bodyleft");
    
    if(screen.height > 1000)
        navigation.style.height = (screen.height - (bodyleft.offsetTop + 450)) + "px";
    else
    {
        if(bodyContent.offsetHeight < 300)
            navigation.style.height = ((bodyleft.offsetTop + 300)) + "px";
        else
            navigation.style.height = ((bodyContent.offsetHeight)) + "px";
        
    }
}