function prepareRadio(){
  if( document.getElementById &&
      document.getElementsByTagName ){
    if( document.getElementById( 'radioHighlights' ) ){
      var radio = document.getElementById( 'radioHighlights' );
      var links = radio.getElementsByTagName( 'a' );
      for( var i=0; i < links.length; i++ ){
        links[i].onclick = function(){
          return popupRadio(this);
        };
      }
    }
  }
}

function popupRadio() {
	window.open('flash/audio/espn_player.php','espn_player','width=130,height=20,resizable=no,scrollbar=no,toolbar=no,location=no,menubar=no,status=no');
	return false;
}

addLoadEvent(prepareRadio);
