function setLayout(Background, Height)
{
    var splitter = document.getElementById("ContentWrapper");
    var content = document.getElementById("Content");
    splitter.style.background = Background;
    content.style.height = Height;
}
