function doResize() {
    //debugger
	var w = document.body.clientWidth;
	var h = document.body.clientHeight;
	var fh;
	var ft;
	var ch;
	var ct;
	var t;
	if (w>800){
		var l = (w-800)/2;
	}else{
		var l = 0;
	}
	document.getElementById("pnlPage").style.left = l + "px";
	document.getElementById("ContactBar2_pnlContact").style.height = document.getElementById("pnlContent").clientHeight + "px";
	ch = document.getElementById("ContactBar2_pnlContact").style.height;
	ct = document.getElementById("ContactBar2_pnlContact").style.top;
	ft = document.getElementById("Footer1_pnlFooter").style.top;
	fh = document.getElementById("Footer1_pnlFooter").clientHeight;
	h = parseInt(ft) + parseInt(fh);
	document.getElementById("pnlPage").style.height = h + "px";

    if (BrowserDetect.browser == "Firefox"){
	    h = document.getElementById("Table2").clientHeight;
        t = document.getElementById("pnlContent").style.top;
        w = document.getElementById("ContactBar2_pnlMenu").style.width;
        h = parseInt(h) + parseInt(t) + 10;
        document.getElementById("ContactBar2_pnlContact").style.height = h - 30;
        document.getElementById("pnlContent").style.height = h - 30;
        document.getElementById("Table1").style.width = w;
        document.getElementById("dm0m0").style.width = w;
    } else {
	    h = document.getElementById("pnlContent").clientHeight;
        t = document.getElementById("pnlContent").style.top;
        h = parseInt(h) + parseInt(t);
    }
    //alert("Content Height:" + h + "; Top:" + t);
    document.getElementById("Footer1_pnlFooter").style.top = h;
    //alert("Footer Top:" + h);

}

function doResize1() {
	//var w = screen.width;
	var w = document.body.clientWidth;
	var h = document.body.clientHeight;
	var t;
	if (w>800){
		var l = (w-800)/2;
	}else{
		var l = 0;
	}
	document.getElementById("pnlPage").style.left = l + "px";
	document.getElementById("pnlContact").style.height = document.getElementById("pnlContent").clientHeight + "px";
	t = document.getElementById("Footer1_pnlFooter").style.top;
	h = document.getElementById("Footer1_pnlFooter").clientHeight;
	h = parseInt(t) + parseInt(h);
	document.getElementById("pnlPage").style.height = h + "px";

    if (BrowserDetect.browser == "Firefox"){
	    h = document.getElementById("Table2").clientHeight;
        t = document.getElementById("pnlContent").style.top;
        w = document.getElementById("pnlMenu").style.width;
        h = parseInt(h) + parseInt(t) + 10;
        //document.getElementById("pnlContact").style.height = h - 30;
        document.getElementById("pnlContent").style.height = h - 265;
        document.getElementById("pnlHeader").style.width = w;
        document.getElementById("Bendini3").style.width = w;
        document.getElementById("dm0m0").style.width = w;
        document.getElementById("pnlFAQ").style.width = w;
        document.getElementById("imgFAQ").style.width = w;
        //document.getElementById("Footer1_pnlFooter").style.width = w;
    } else {
	    h = document.getElementById("pnlContent").clientHeight;
        t = document.getElementById("pnlContent").style.top;
        h = parseInt(h) + parseInt(t);
    }
    //alert("Content Height:" + h + "; Top:" + t);
    document.getElementById("Footer1_pnlFooter").style.top = h;
}

function resetContent(){
    var it = document.getElementById("pnlContent");
    var ft = document.getElementById("Footer1_pnlFooter");
    var topContent = it.style.top;
    var topFooter = ft.style.top;
    it.style.height = topContent - topFooter;
}			

var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{
			string: navigator.userAgent,
			subString: "Chrome",
			identity: "Chrome"
		},
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari",
			versionSearch: "Version"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]

};
BrowserDetect.init();
