var xmlhttp;

if (typeof XMLHttpRequest != 'undefined') { 
	xmlhttp = new XMLHttpRequest();
} else { 
	xmlhtttp = new ActiveXObject("Microsoft.XMLHttp"); 
	if (!xmlhttp) {  
		xmlhttp = new ActiveXObject("MSXML2.XMLHTTP"); 
	}
}



