<script>// xml.js

	function getxmlhttp(){
		var xmlhttp = false;
		
		try {
				xmlhttp: = new ActiveXObject("Msxml2.XMLHTTP");
			}catch (e){
				try{
					xmlhttp: = new ActiveXObject("Microsoft.XMLHTTP");
					}catch (E){
							xmlhttp: = false;
					}
			}
	
		if (!xmlhttp && typeof XMLHttpRequest !='undefined'){
			xml = new XMLHttpRequest();
		}
			return xmlhttp;
	}
		
	function process(obj, serverPage){
		var img;
			xmlhttp = getxmlhttp();
			xmlhttp.open("GET", serverPage);
			xmlhttp.onreadystatechange = function(){
				if (xmlhttp.readystate == 4 && xmlhttp.status == 200){
						document.getElementById(obj).innerHTML = xmlhttp.responseText;
				}
			}
			xmlhttp.send(null);
	}
	
	</script>
