// $Id: ajax.js,v 1.1 2009/05/08 01:47:34 scottl Exp $
// $Revision: 1.1 $
// $Author: scottl $
//
// $Log: ajax.js,v $
// Revision 1.1  2009/05/08 01:47:34  scottl
// Committing new property browse feature.
//
// Revision 1.1  2009/01/30 18:35:49  scottl
// Added realty section.
//
// Revision 1.1  2007/02/12 18:24:21  stephend
// Added Browse properties widget
//
// Revision 1.2  2007/01/24 23:12:34  karenk
// *** empty log message ***
//
// Revision 1.1  2007/01/16 23:05:28  karenk
// *** empty log message ***
//
function getHttpRequestObject() {
	var xmlhttp = null;
	if (window.XMLHttpRequest) {
		xmlhttp = new XMLHttpRequest();
		if ( typeof xmlhttp.overrideMimeType != 'undefined') {
			xmlhttp.overrideMimeType('text/xml');
		}
	}
	else if (window.ActiveXObject) {
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	return xmlhttp;
}


