/* *** ZUMMIN JAVASCRIPT *** */var SimpleHandler = function(){		this._xhrObj = null;	};SimpleHandler.prototype = {	request: function(method, url, callback, postVars) {		var xhr = this.createXhrObject();		xhr.onreadystatechange = function(){			if (xhr.readyState != 4) return;			(xhr.status === 200) ?				callback.success(xhr.responseText, xhr.responseXML) :				callback.failure(xhr.status);		};		xhr.open(method, url);		if (method != 'POST') postVars = null;		xhr.send(postVars);	},		requestUrlEncoding: function(method, url, callback, postVars) {		var xhr = this.createXhrObject();		xhr.onreadystatechange = function(){			if (xhr.readyState != 4) return;			(xhr.status === 200) ?				callback.success(xhr.responseText, xhr.responseXML) :				callback.failure(xhr.status);		};		xhr.open(method, url);		xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');		if (method != 'POST') postVars = null;		xhr.send(postVars);	},		createXhrObject: function(){		if (this._xhrObj != null) return this._xhrObj;		var methods = [			function(){return new XMLHttpRequest();},			function(){return new ActiveXObject("Msxml2.XMLHTTP");},			function(){return new ActiveXObject("Microsoft.XMLHTTP");}];					for(var i = 0; i < methods.length; i++)		{			try{				this._xhrObj = methods[i]();				if (this._xhrObj != null)				{					return this._xhrObj;				}			}catch(e){				continue;			}		}				throw new Error("Ajax is not supported!");	}};function popUpConsole(text){	var w = window.open();	var d = w.document;	d.open();	d.write(text);	d.close();}