function showAllStars(event, country, season_start, season_end) {
  popup = $("country-allstars");
  if (popup != null) {
    popup.setStyle({ top:(Event.pointerY(event) + 8) + "px", left:(Event.pointerX(event) + 8) + "px" })
    popup.innerHTML = "<div class='float-left'><img src='/images/icons/ajax-indicator.gif' /></div>" +
                      "<div class='float-left' style='padding-left:5px;'><span style='font-size:10pt;'>Loading...</span></div>" +
                      "<div class='float-right'>[<a href='javascript:void(0);' style='color:#ff0000;' onclick='closeAllStars()'>close</a>]" +
                      "<div class='clear'><!-- --></div>";
    Element.show(popup);
    new Ajax.Updater('country-allstars', "/community/world_cup_allstars/" + country + "/" + season_start + "/" + season_end, {asynchronous:true, evalScripts:true, method:'get'});
  }
}

function closeAllStars() {
  popup = $("country-allstars");
  if (popup != null) {
    popup.hide();
  }
}