// Super simple kids...just makes an Ajax object
function buildAjax() 
	{
	var ajaxObject = false;
	try { ajaxObject = new XMLHttpRequest() ; }
		catch (e) { 
			try { ajaxObject = new ActiveXObject('Msxml2.XMLHTTP'); }
			  catch (e) { 
			  	try { ajaxObject = new ActiveXObject('Microsoft.XMLHTTP');}
				catch (e) { alert("no ajax here - deal with it"); }
				}
			}
	return ajaxObject
	}