function LoadContent(content,target) {
	// content = path to the content file
	// target = the div to place the content into
	var xmlhttp;
	// Test browser for AJAX compatability
	try	{ // Firefox, Opera 8.0+, Safari
  		xmlhttp=new XMLHttpRequest();
  	} catch (e) {
		try { // Internet Explorer
			xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try { // Realy old-ass Internet Explorer
				xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e) {
				alert("Your browser does not support AJAX. Please upgrade your browser.");
				return false;
			}
		}
	}
	//Show page is loading
    document.getElementById(target).innerHTML = 'Loading Page...';
	//scroll to top
	scroll(0,0);
	//send data
	xmlhttp.onreadystatechange = function(){
		//Check page is completed and there were no problems.
		if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
			//Write data returned to page
			document.getElementById(target).innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET", content);
	xmlhttp.send(null);
	//Stop any link loading normaly
	return false;
}
