<!-- Begin JavaScript
/*
Attribution:
Original Code By Bret Taylor -- http://ajaxcookbook.org/
License Info: http://creativecommons.org/licenses/by/2.5/

Description:
Creates a new xmlHttp object. Cross browser support.
Returns null on failure.

Example:
xmlHttp = getJaxTube();
*/
function createXMLHttpRequest() {
	var xmlHttp = null;
	try {
		// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
	}
	catch (e) {
		// Internet Explorer
		try {
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) {
			xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	return xmlHttp;
}
// End JavaScript -->