function refreshUserPass(enterUsername,enterPassword){
	if((enterUsername==null) || (enterPassword==null)){
		alert('Error, Missing parameter in refreshUserPass');
	}
	else
	{
		expiryDate = new Date();
		expiryDate.setTime(expiryDate.getTime() + 365*24*60*60*1000);
		document.cookie= ('cook_username=' + enterUsername +'; expires=' + expiryDate.toGMTString() +'; path=/');


		expiryDate2 = new Date();
		expiryDate2.setTime(expiryDate2.getTime() + 60*30*1000);
		document.cookie= ('cook_password=' + enterPassword +'; expires=' + expiryDate2.toGMTString() +'; path=/');
	}
}
function logout(){
	expiryDate = new Date();
	expiryDate = new Date();
	expiryDate.setTime(expiryDate.getTime() + -10);
 	document.cookie = ('cook_username=n; expires=' + expiryDate.toGMTString() +'; path=/');
	document.cookie = ('cook_password=n; expires=' + expiryDate.toGMTString() +'; path=/');
	window.location = "?p=login";
}
function timedlogout(){
	setTimeout('logout()',3000);
}
function redirecttimeout(){
	window.location = "/?p=login";
}
function opensmall(location){
	reallocation=("/includes/" + location + ".php");
	window.open(reallocation, 'information_window', 'left=20,top=20,width=500,height=500,toolbar=0,resizable=0');
}
function openmap(location){
	reallocation=("/map" + location + ".php");
	window.open(reallocation, 'map_window', 'left=20,top=20,width=517,height=417,toolbar=0,resizable=0');
}
function backToControl(){
	window.location = "/?p=control";
}
function backToControlTimed(){
	setTimeout('backToControl()', 3000);
}
function displaycontentUB(){
	var biframe = document.getElementById("broker");
	if(iframe_count == 0){
		var loading = document.getElementById("loading");
		loading.style.display = "none";
		var content = document.getElementById("content");
		content.style.display = "block";
		var framecon = document.getElementById("fc");
		framecon.scrollTop = 700;
		framecon.scrollLeft = 224;
		iframe_count++;
	}
	else
	{
		resetScroll();
	}
}
function resetScroll(){
	var framecon = document.getElementById("fc");
	framecon.scrollTop = 0;
	framecon.scrollLeft = 0;
}

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.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"
		},
		{	// 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();