﻿function CustomPanelToggle(panelBtn, panelId) {
	var panel = document.getElementById(panelId + "panelc");

	if (panelBtn.src.indexOf("/images/CustomPanelExpand.png") != -1) {
		panelBtn.src = "/images/CustomPanelCollapse.png";
		panel.style.display = "none";
	} else {
		panelBtn.src = "/images/CustomPanelExpand.png";
		panel.style.display = "";
	}

	return false;
}

function GetWindowW() {
	var winW;
	if (document.body && document.body.offsetWidth)
		winW = document.body.offsetWidth;
	if (document.compatMode == 'CSS1Compat'
		&& document.documentElement
		&& document.documentElement.offsetWidth)
		winW = document.documentElement.offsetWidth;
	if (window.innerWidth)
		winW = window.innerWidth;
	return winW;
}

function GetWindowH() {
	var winH;
	if (document.body && document.body.offsetHeight)
		winH = document.body.offsetHeight;
	if (document.compatMode == 'CSS1Compat'
		&& document.documentElement
		&& document.documentElement.offsetHeight) {
		winH = document.documentElement.offsetHeight;
	}
	if (window.innerHeight)
		winH = window.innerHeight;
	return winH;
}
