\n');
}
// PLAYER
function target_movie_DoFSCommand(command, args) {
switch(command) {
case "next":
frameRef = parent.frames.f1;
//target_movieObj.posTrack = args;
target_movieObj = InternetExplorer ? frameRef.control : frameRef.document.control;
target_movieObj.TGotoLabel("_root","action2");
target_movieObj.TGotoLabel("_root","next2");
break;
}
}
// Hook for Internet Explorer
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&
navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
document.write(' \n');
}
// AJAX USED TO UPDATE POST TRACK - LIST POSITION
function setAjax(){
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
function updateTrack(action, url){
var t1, t2, contenedor;
ajax = setAjax();
ajax.open("GET","https://www.apachestonemusic.com/wp-content/themes/apachestone/player-control.php" + "?pos=" + action,true);
ajax.onreadystatechange=function() {
if (ajax.readyState==4) {
}
}
ajax.send(null)
}
-->