<!--
var rfNodeId='';
var xmlhttp;

function include(pURL, pNodeId) {
	if (arguments.length!=0) {
		var url=pURL;
		if (arguments.length>=2) {
			rfNodeId=pNodeId;
		}
		getFile(pURL);
		if ((typeof(xmlhttp))!='object') {
			document.write('You need to upgrade your browser to use this page.\r\nAs of March 2006 more than 98% of the web browsers in use support the remote scripting object. Either your browser does not support remote scripting or the support has been disabled.');
		}
	}else{
		if (xmlhttp.readyState==4) {
			if (xmlhttp.status==200) {
				if (rfNodeId=='') {
					document.write(xmlhttp.responseText);
				}else{
					document.getElementById(rfNodeId).innerHTML=xmlhttp.responseText;
				}
			}
		}
	}
}

function getFile(pURL) {
    var objError=false;
    try {
		if (window.XMLHttpRequest) { // code for Mozilla, Safari, etc 
			xmlhttp=new XMLHttpRequest();
		}
	}
	catch(e) { objError=true; }
	try {
		if (window.ActiveXObject) { //IE 
			xmlhttp=new ActiveXObject('Microsoft.XMLHTTP');
			objError=false;
		}
	}
	catch(f) { objError=true; }
	
	if (!objError) {
		xmlhttp.onreadystatechange=include;
		xmlhttp.open("GET", pURL, true); // leave true for Gecko
		xmlhttp.send(null);
	}else{	
		alert('Your browser does not appear to support remote scripting.');
		xmlhttp=false;
	}
}
//-->