
		<!--
b = 0

function getHTTPObject() {
	var xhr = false;
	if (window.ActiveXObject) {
		try {
			xhr = new ActiveXObject("Msxml2.XMLHTTP");
		} catch(e) {
			try {
				xhr = new ActiveXObject("Microsoft.XMLHTTP");
			} catch(e) {
				xhr = false;
			}
		}
	} else if (window.XMLHttpRequest) {
		try {
			xhr = new XMLHttpRequest();
		} catch(e) {
			xhr = false;
		}
	}
	return xhr;
}
function grabFile(file) {
	var request = getHTTPObject();
	if (request) {
/*    	displayLoading(document.getElementById("emailholding"));*/
		request.onreadystatechange = function() {
			displayResponse(request);
		};
		request.open( "GET", file, true );
		request.send(null);
	}
}
function displayResponse(request) {
	if (request.readyState == 4) {
		if (b < 1) {
			a = "emailnav"
		}
		else{
			a = "emailholding"
		}
		var details = document.getElementById(a);
		details.innerHTML = request.responseText;
		b++;
/*		if (b == 1) {
			addLinks();
		}*/
	}
}

/* ############################  Show/hide  ############################ */
function switchid(id){	
	hideallids();
	showdiv(id);
}

function hideallids(){
	//loop through the array and hide each element by id
	for (var i=0;i<ids.length;i++){
		hidediv(ids[i]);
	}		  
}

function hidediv(id) {
	//safe function to hide an element with a specified id
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'none';
	}
	else {
		if (document.layers) { // Netscape 4
			document.id.display = 'none';
		}
		else { // IE 4
			document.all.id.style.display = 'none';
		}
	}
}

function showdiv(id) {
	//safe function to show an element with a specified id
		  
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'block';
	}
	else {
		if (document.layers) { // Netscape 4
			document.id.display = 'block';
		}
		else { // IE 4
			document.all.id.style.display = 'block';
		}
	}
}

/*function displayLoading(element) {
  var image = document.createElement("img");
  image.setAttribute("src","loading.gif");
  image.setAttribute("alt","Loading...");
  element.appendChild(image);
}*/
			var arVersion = navigator.appVersion.split("MSIE")
			var version = parseFloat(arVersion[1])
			
			if ((version >= 5.5) && (version < 7)){
			document.write ("<style type='text/css' media='all'>@import url( /iestyle.css );</style>")
			}
		-->
		
