/* id: 5462 */ function createVid_hxsPlayer() { jwplayer('hxsPlayer').setup({ flashplayer: 'https://tv.hexus.net/media/swf/player-5.7.swf', id: 'playerID', width: '640', displaywidth: '640', height: '360', abouttext: 'HEXUS', aboutlink: 'https://www.HEXUS.net/', image: 'https://hexus.net/media/uploaded/2019/6/93cdee5a-79f2-4688-8fd6-c27cfa506d05.jpg', file: 'https://hexus.net/media/uploaded/2019/6/93cdee5a-79f2-4688-8fd6-c27cfa506d05.mp4', controlbar: 'over', skin: 'https://tv.hexus.net/media/skins/hexus/hexus_skin.zip' }); } function loadScript(sScriptSrc,callbackfunction) { //gets document head element var oHead = document.getElementsByTagName('head')[0]; if(oHead) { //creates a new script tag var oScript = document.createElement('script'); //adds src and type attribute to script tag oScript.setAttribute('src',sScriptSrc); oScript.setAttribute('type','text/javascript'); //calling a function after the js is loaded (IE) var loadFunction = function() { if (this.readyState == 'complete' || this.readyState == 'loaded') { callbackfunction(); } }; oScript.onreadystatechange = loadFunction; //calling a function after the js is loaded (Firefox) oScript.onload = callbackfunction; //append the script tag to document head element oHead.appendChild(oScript); } } // loadScript('http://stream.boxfx.co.uk/jwplayer.js', function() { loadScript('https://hexus.net/media/js/jwplayer.js', function() { createVid_hxsPlayer(); });