<!-- <![CDATA[
function CreateAjaxObject() {
var AjaxObject;
	if(window.XMLHttpRequest) {
		// Create ajax object for Mozila browsers.
		AjaxObject = new XMLHttpRequest();
	} else if(window.ActiveXObject) {
		// Create ajax object for IE5+ browsers.
		AjaxObject = new ActiveXObject("Microsoft.XMLHTTP");
	} else {
		// The browser too old or not supported in this thechnologic.
		alert("Your browser dosen\'t supported in this thechnologic or ActiveX dosen\'t active.");
	}
	
	return AjaxObject;
}	
function AjaxResponse(object) {
	// Check if the page ready.
	if(object.readyState == 4) {
		return object.responseText;
	} else {
		return false;
	}
}


// ]]> -->

