﻿// JScript File

var browserName=navigator.appName;
var height;
 if (browserName=="Microsoft Internet Explorer")
 {
    height = 580;
 }
 else{
    height = 537;
 }

window.onload = function()
    {
        ArrnageDivs();
    }

window.onresize = function()
    {
        ArrnageDivs();
    }   
function ArrnageDivs()
    {
        //By Andrew Rea
        if(document.getElementById("Main_Body").offsetHeight < document.getElementById("LeftMenu").offsetHeight )
        {
            document.getElementById("Main_Body").style.height = document.getElementById("LeftMenu").offsetHeight +'px';
        }
        else{
            document.getElementById("LeftMenu").style.height = document.getElementById("Main_Body").offsetHeight +'px';
        }
    }