// Browser detect 

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: "OmniWeb",
versionSearch: "OmniWeb/",
identity: "OmniWeb"
},
{
string: navigator.vendor,
subString: "Apple",
identity: "Safari"
},
{
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();

//alert(BrowserDetect.OS+" "+BrowserDetect.browser+" "+BrowserDetect.version); */





/******************************************************************************

Fix height of Div

******************************************************************************/

function fixHeight(){
	//If browser conditions are true fix div heights
	
var height1;
var height2;

if(document.getElementById("center")) {
	if( document.getElementById("center")) {
		height1 = document.getElementById("center").clientHeight; // Get height of div "center"
	}
}
else {
	height1 = 0;	
}
if(document.getElementById("sidebar-right")) {
	if(document.getElementById("sidebar-right")) {
		height2 = document.getElementById("sidebar-right").clientHeight; // Get height of div "center-sidebar-right"and add offset
	}
}
else {
	height2 = 0;	
}

//Set the height of the continer div "center" to the height of the biggest of height1 height2
	
		
		if(height2 > height1){	
				if(document.getElementById("center")) {
					document.getElementById("center").style.height = height2+"px";
				}
		}
		else if(height1 > height2){	
				if(document.getElementById("sidebar-right")) {
					document.getElementById("sidebar-right").style.height = height1+"px";
				}
		}
	
}

