/*
Ajax Script - Dave Howe
*/

/* The Ajax Class */
function makeDanAJAX()
{
	this.ajaxRequest;
	try 
	{
		this.ajaxRequest = new XMLHttpRequest();
		if (this.ajaxRequest.overrideMimeType) 
		{
			this.ajaxRequest.overrideMimeType('text/xml');
		}
	} 
	catch (trymicrosoft) 
	{
		try 
		{
			this.ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
		} 
		catch (othermicrosoft) 
		{
			try 
			{
				this.ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
			} 
			catch (failed) 
			{
				this.ajaxRequest = false;
			}
		}
	}
	
	if (!this.ajaxRequest)
	alert("Error initializing XMLHttpRequest!");
	return this.ajaxRequest;
}
