function initXML() {
	var xmlhttp;
	/*@cc_on @*/
	/*@if (@_jscript_version >= 5)
		try {
		xmlhttp=new ActiveXObject("Msxml2.XMLHTTP")
	 } catch (e) {
		try {
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
		} catch (E) {
		 xmlhttp=false
		}
	 }
	@else
	 xmlhttp=false
	@end @*/
	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
	 try {
		xmlhttp = new XMLHttpRequest();
	 } catch (e) {
		xmlhttp=false
	 }
	}
	return xmlhttp
}

function nav(url) {
	var xmlhttp = initXML();
 	xmlhttp.open("GET", url,true);
 	xmlhttp.onreadystatechange=function() {
		if (xmlhttp.readyState==4) {
			document.getElementById("subCont").innerHTML = xmlhttp.responseText;
		}
 	}
 	xmlhttp.send(null)
}

function PageQuery(q) {
if(q.length > 1) this.q = q.substring(1, q.length);
else this.q = null;
this.keyValuePairs = new Array();
if(q) {
for(var i=0; i < this.q.split("&").length; i++) {
this.keyValuePairs[i] = this.q.split("&")[i];
}
}
this.getKeyValuePairs = function() { return this.keyValuePairs; }
this.getValue = function(s) {
for(var j=0; j < this.keyValuePairs.length; j++) {
if(this.keyValuePairs[j].split("=")[0] == s)
return this.keyValuePairs[j].split("=")[1];
}
return false;
}
this.getParameters = function() {
var a = new Array(this.getLength());
for(var j=0; j < this.keyValuePairs.length; j++) {
a[j] = this.keyValuePairs[j].split("=")[0];
}
return a;
}
this.getLength = function() { return this.keyValuePairs.length; }
}
function queryString(key){
var page = new PageQuery(window.location.search);
return unescape(page.getValue(key));
}
function loadProdPage() {
	nav("/products/home.html");
}
function loadPage() {
	var loc = queryString("loc");
	if (loc == "ty")
		nav('../company/thanks.html');
	else
	{
		if (loc =="news")
			nav('../company/press.asp');
		else
		{
			if (loc == "cont")
				nav('../company/contactform.html');
			else
				nav('../company/background.html');
		}
	}
}
	function readNews(newsID) {
		var URL = "../viewNews.asp?id=" + newsID;
		window.self.name = "main";
		lft = 0;
		tp = 0;
		var now = new Date();
		win = window.open(URL, "popup" + now.getTime(), "width=570,height=400,top=" + tp + ",left=" + lft + ",toolbar=0,location=0,directories=0,resizable=1,status=1,menubar=0,scrollbars=");
	}
	function openWin(URL, width, height) {
		window.self.name = "main";
		lft = (screen.width/2) - Math.round(width/2)
		tp = (screen.height/2) - Math.round(height/2)
		var now = new Date();
		win = window.open(URL, "popup" + now.getTime(), "width=" + width + ",height=" + height + ",top=" + tp + ",left=" + lft + ",toolbar=0,location=0,directories=0,resizable=1,status=1,menubar=0,scrollbars=");
	}
