//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 Adobe Systems Incorporated.  All rights reserved.


function addMozillaPanel(url) {
 if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function")) {
  window.sidebar.addPanel ("My Music Player ",url,"");
 }
 else {
  var rv = window.confirm ("Music Player Sidebar requires a compatible browser. Do you want to upgrade?");
  if (rv) 
   document.location.href = "http://www.getfirefox.com";
  }
}


