// JavaScript Document

function UpdateContent(pageid) {
	//AJAX - update the small content box on the left
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url=strRoot+"ajax/get-page.php";
	url=url+"?pageid="+pageid;
	
	xmlHttp.onreadystatechange=stateContentChanged;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}

function stateContentChanged() {
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") { 
		$("#divContentLeft .update").html(xmlHttp.responseText);
		//update page title - will need to use JSON
		//$('title').text("Page Title - Westar Trucks");
	}
}

