<!--

        var InstallPath = "http://www.bumpskey.com";

        var WMState = new Array();

        WMState[0]  = "Undefined";           
        WMState[1]  = "Stopped";             
        WMState[2]  = "Paused";              
        WMState[3]  = "Playing";             
        WMState[4]  = "Scan Forward";        
        WMState[5]  = "Scan Reverse";        
        WMState[6]  = "Buffering";           
        WMState[7]  = "Waiting";             
        WMState[8]  = "Media Ended";         
        WMState[9]  = "Connecting";       
        WMState[10] = "Ready";               
        WMState[11] = "Reconnecting";


        function CheckStatus() {

                 ajaxRead(InstallPath + "/ShowStatus.xml");

                 setTimeout('CheckStatus()', 5000);

         }
         

         function ajaxRead(file) {

                  var xmlObj = null;
               
                  if(window.XMLHttpRequest) {

                     xmlObj = new XMLHttpRequest();

                  }else if(window.ActiveXObject) {

                        xmlObj = new ActiveXObject("Microsoft.XMLHTTP");
      
                  }else{

                     return;

                  }

                  xmlObj.onreadystatechange = function() {

                  if(xmlObj.readyState == 4) {
        
                    updateObj('xmlObj', xmlObj.responseXML.getElementsByTagName('data')[0].firstChild.data);

                  }

                  }

                  xmlObj.open ('GET', file, true);
                  xmlObj.send ('');

         }


         function updateObj(obj, data) {

                  if (data == 1 && ListenTo == "Webcast") {
                     
                     document.getElementById('ShowStatus').innerHTML = Live;

                  }else if (ListenTo == "Podcast"){

                     document.getElementById('ShowStatus').innerHTML = Pod;
                     
                  }else{   

                     document.getElementById('ShowStatus').innerHTML = Web;
                     
                  }

         }
         
         
         function GetPodcastFile(file) {
           
                  var xmlObj = null;
               
                  if(window.XMLHttpRequest) {

                     xmlObj = new XMLHttpRequest();

                  }else if(window.ActiveXObject) {

                        xmlObj = new ActiveXObject("Microsoft.XMLHTTP");
      
                  }else{

                     return;

                  }

                  xmlObj.onreadystatechange = function() {

                  if(xmlObj.readyState == 4) {
        
                    updateObj1('xmlObj', xmlObj.responseXML.getElementsByTagName('data')[0].firstChild.data);

                  }

                  }

                  xmlObj.open ('GET', file, true);
                  xmlObj.send ('');

         }


         function updateObj1(obj, data) {

                  Player.URL = data;
                  
         }
         

         function OpenWindow() {

                  var PosX=(screen.width/2)-235;
                  var PosY=(screen.height/2)-180;

                  window.open("BumpskeyPlayer.html","","width=470,height=360,left="+PosX+",top="+PosY);

         }


         function OpenVideos() {

                  var PosX=(screen.width/2)-235;
                  var PosY=(screen.height/2)-295;

                  window.open("BumpskeyVideos.php","","width=470,height=590,left="+PosX+",top="+PosY);

         }


         function UpdatePlayerStatus() {

                 X = Player.playState;

                 document.getElementById("PlayerStatus").innerHTML = WMState[X];  

                 setTimeout('UpdatePlayerStatus()', 500);

         }
   
-->        