/************************************************************************
* Function: Response Object												*
* Product: XML Request													*
* Company: Fusework Studios, a Division of Rutter Communications 		*
*			Network LLC.												*
* Author: Brandon Coppernoll											*
* Date Created: June 23, 2006											*
* Date Modified: May 3, 2007											*
*																		*
* Copyright: Copyright (C) 2007 Fusework Studios, a Division of Rutter	*
*			 Communications Network LLC. 								*
*            See "fwslicense.txt" for details regarding 				*
*            licensing, usage, disclaimers, distribution and general 	*
*            copyright requirements. If you don't have a copy of this 	*
*            file, you may request one at support@fuseworkstudios.com	*
*																		*
* This object allows the creation of the xmlHttp object that will do	*
* most, if not all, AJAX related operations.							*
************************************************************************/

/* Create a new XMLHttpRequest object to talk to the Web server */
var xmlHttp = false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
try {
  xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
  try {
    xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
  } catch (e2) {
    xmlHttp = false;
  }
}
@end @*/

if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
  xmlHttp = new XMLHttpRequest();
}

if (!xmlHttp)
  alert("Error initializing XMLHttpRequest!");
  

	
