<!--
	var xmlhttp = false;
	
	function initAJAX()
	{
		try {
			xmlhttp = new XMLHttpRequest();
		} 
		catch (trymicrosoft) {
			try {
				xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
			} 
			catch (error) {
				try {
					xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
				} 
				catch (error) {
					xmlhttp = false;
				}
			}
		}
		if( xmlhttp )
			return xmlhttp;
	}

	xmlhttp	= initAJAX();
-->
	
