function makeRequest(url) { var httpRequest = false; if (window.XMLHttpRequest) { httpRequest = new XMLHttpRequest(); if (httpRequest.overrideMimeType) { httpRequest.overrideMimeType('text/xml'); } } else if (window.ActiveXObject) { try { httpRequest = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { httpRequest = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {} } } if (!httpRequest) { return false; } httpRequest.onreadystatechange = function(e) { alertContents(); }; httpRequest.open('POST', url, false); httpRequest.setRequestHeader("Cache-Control","no-cache"); httpRequest.send(null); } function alertContents(httpRequest) { if (httpRequest.readyState !== "" || httpRequest.readyState !== null) { if (httpRequest.readyState == 4) { if (httpRequest.status == 200) { return true; } else { return false; } } } } ip = "38.107.191.80"; idconnect = "616016"; var statusbarre = "1"; function ChangeStatusBarre(req) { if(statusbarre == "1") { document.getElementById("enjoyStationBar").style.visibility = "hidden"; document.getElementById("enjoyStationBar2").style.visibility = "visible"; document.getElementById("FlashID").style.visibility = "hidden"; if(!req) makeRequest("radio/isconnect.php?ip="+ ip +"&hidden=1"); statusbarre = "0"; }else { document.getElementById("enjoyStationBar").style.visibility = "visible"; document.getElementById("enjoyStationBar2").style.visibility = "hidden"; document.getElementById("FlashID").style.visibility = "visible"; if(!req) makeRequest("radio/isconnect.php?ip="+ ip +"&visible=1"); statusbarre = "1"; } } function unload_handler() { makeRequest("radio/isconnect.php?ip="+ ip +"&idconnect="+ idconnect +"&del=1"); } if (typeof window.addEventListener !== 'undefined') { window.addEventListener("unload", unload_handler, false); } else if (typeof document.addEventListener !== 'undefined') { document.addEventListener("unload", unload_handler, false); } else if (typeof window.attachEvent !== 'undefined') { window.attachEvent("onunload", unload_handler); } function affiche_player() { var barre = "http://barre.enjoystation.net/player.swf?site="+ site +"&tcolor="+ tcolor +"&fcolor="+ color +"&titrestyle="+ titrestyle +"&titresize="+ titresize +"&font="+ font +"&ipconnect="+ ip +"&idconnect="+ idconnect; var player_object = ''; player_object += ''; player_object += ''; player_object += ''; player_object += ''; player_object += ''; player_object += ''; player_object += ''; player_object += ''; player_object += ''; player_object += ' '; player_object += ' '; player_object += ' '; player_object += ' '; player_object += ''; player_object += ''; player_object += ''; player_object += ''; document.write(player_object); }