var LiveSchedule = new function() {this.location = "modules/live_schedule/LiveSchedule.ajax.php"; this.getSchedules = function(){var arrParams = [].join( String.fromCharCode( 3 ) );var data = "lang=default&loc="+this.location+"&met=getSchedules¶ms="+arrParams;$.ajax({type: "POST", url: "index.php?ajax=invoke",contentType: "application/x-www-form-urlencoded;charset=utf-8",data: data,async: true,cache: false,success: function(data, statusText, jqXHR){if(typeof LiveSchedule_callback_getSchedules == "function"){ LiveSchedule_callback_getSchedules( { returnVal:$.trim(data), success:true, status:jqXHR.status, statusText:statusText} );}},error: function( jqXHR, statusText, thrownError ){if(typeof LiveSchedule_callback_getSchedules == "function"){ LiveSchedule_callback_getSchedules( {returnVal:null, success:false, status:jqXHR.status, statusText:statusText} );}}});}}