// JavaScript Document

function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}
<!-- Google autocolour fix
  if(window.attachEvent)
    window.attachEvent("onload",setListeners);

  function setListeners(){
    inputList = document.getElementsByTagName("INPUT");
    for(i=0;i<inputList.length;i++){
      inputList[i].attachEvent("onpropertychange",restoreStyles);
      inputList[i].style.backgroundColor = "#ffffff";
    }
    selectList = document.getElementsByTagName("SELECT");
    for(i=0;i<selectList.length;i++){
      selectList[i].attachEvent("onpropertychange",restoreStyles);
      selectList[i].style.backgroundColor = "#DECDB0";
    }
  }

  function restoreStyles(){
    if(event.srcElement.style.backgroundColor != "#ffffff")
      event.srcElement.style.backgroundColor = "#ffffff";
  }//-->
  
  
function musicPlayer(){
	//window.open('links.htm', 'Music player', 'fullscreen=no,toolbar=no,location=no,scrollbars=no,resizable=no,menubar=no,width=419,height=419,top=0,left=0');
	window.open('music_player/player.htm', 'gh', 'fullscreen=no,width=360,height=140');
}