/*
	fmr_ajax_lib.js
	File containing Ajax Lib functions
*/

function init_http_obj() {
	/*@cc_on @*/
	/*@if (@_jscript_version >= 5)
	try {
	  httpObj = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
	  try {
	    httpObj = new ActiveXObject("Microsoft.XMLHTTP");
	  } catch (e2) {
	    httpObj = false;
	  }
	}
	@end @*/

	if (!httpObj && typeof XMLHttpRequest != 'undefined') {
	  httpObj = new XMLHttpRequest();
	}
}