﻿// JavaScript Document

BottomPanel = null;
BottomPanelLeft = null;
BottomPanelCenter = null;
BottomPanelRight = null;

function Bottom() {
    BottomPanel = document.getElementById("ctl00_PanelBottom");
    BottomPanelLeft = document.getElementById("ctl00_PanelBottomLeft");
    BottomPanelCenter = document.getElementById("ctl00_PanelBottomCenter");
    BottomPanelRight = document.getElementById("ctl00_PanelBottomRight");
    if (BottomPanel != null) {
        if (navigator.appName == "Microsoft Internet Explorer") {
            offy = document.documentElement.clientHeight;
            BottomPanel.style.height = (offy - 422) + "px";
            BottomPanelLeft.style.height = (offy - 432) + "px";
            BottomPanelCenter.style.height = (offy - 432) + "px";
            BottomPanelRight.style.height = (offy - 432) + "px";
        }
        else {
            offy = window.innerHeight;
            BottomPanel.style.height = (offy - 422) + "px";
            BottomPanelLeft.style.height = (offy - 432) + "px";
            BottomPanelCenter.style.height = (offy - 432) + "px";
            BottomPanelRight.style.height = (offy - 432) + "px";
        }
    }
    return
}
function ViewProject(ID, Category) {

    document.location.href = "SingleProject.aspx" + "?PID=" + ID + "&Category=" + Category;
    return
}
