function DetectClientSettings() {
	//Screen Resolution
	x_res = window.screen.width
	y_res = window.screen.height
	if (y_res < 768) {
		alert("Your screen resolution is too low for this website. If you are running Windows XP right click on the desktop, choose Properties and then select Settings to adjust your display to 1024x768 or higher")
	}
	//Browser browser, version and operating system (from functionsGlobal.js)
	browser = BrowserDetect.browser
	version = BrowserDetect.version
	os = BrowserDetect.OS
	//Redirect to store data in ASP session variables (used by tracking)		
	location.replace("default.asp?getResolution="+x_res+"x"+y_res+"&browser="+browser+"&version="+version+"&os="+os+"&"+qs)
}
function ViewW3CPage() {
	location.href = "default.asp?id=w3c"
}
function Stats() {
	location.href = "default.asp?mode=stats"
}
function GotoService(bar) {
	location.href = "default.asp?service_menu="+bar
}

function GotoW3C() {
	location.href = "default.asp?id=w3c"
}
function Home() {
	location.href = "default.asp"
}
function SiteSearch() {
	search_value = document.search_form.searchbox.value
	if (search_value.length > 2) {
		document.search_form.action = "default.asp?mode=search"
		document.search_form.submit()
	} else {
		if (search_value == "IT" | search_value == "it") {
			document.search_form.searchbox.value = "I.T."
			document.search_form.action = "default.asp?mode=search"
			document.search_form.submit()
		} else {
			alert("Your search query is too short. Please enter a word or phrase of 3 characters or more")
		}
	}
}