function hide_items () {
  items = document.getElementsByTagName('div');
  for (i=0; i<items.length; i++) { 
    if (items[i].className == 'lidl_playerlist_subfolders_active') { 
      items[i].className = 'lidl_playerlist_subfolders_normal';} 
    if (items[i].className == 'lidl_playerlist_subfolders') { 
      items[i].style.display = 'none'; 
    } 
    if (items[i].className == 'lidl_playerlist_playeritems') {
      items[i].style.display = 'none';
    }
  }
};

function show_items(fname, fclassno, fclassact, sfname, sfclass) { 
  items = document.getElementsByTagName('div'); 
  for (i=0; i<items.length; i++) { 
    if (items[i].className == fclassact) {
      items[i].className = fclassno;
    }
    if (items[i].className == sfclass) {
      items[i].style.display = 'none';
    }
  } 
  document.getElementById(sfname).style.display = 'block'; 
  document.getElementById(fname).className = fclassact; 
};

function popup (group_image, group_name, group_location) {
  new_window = window.open("", "", "width=750,height=455"); 
  new_window.document.write("<html><head><title>Lidl Fussballcup</title></head><body style=\"background-color: #cce9f7; margin: 0px; padding: 0px; font-family: Tahoma, Arial, Verdana, Geneva, Helvetica, sans-serif;\"><div style=\"position: absolute; width: 100%; height: 20px; margin: 0px; padding: 0px; top: 0px; left: 0px; background-color: #8dd4f2; text-align: center;\"><p style=\"margin: 0px; padding: 2px 0 0 0px;\"><a href=\"javascript:this.close()\" style=\"color: #000; font-weight: bold; font-size: 12px; text-decoration: none;\">FENSTER SCHLIESSEN</a></p></div><div style=\"position: absolute; width: 500px; height: 313px; margin: 0px; padding: 0px; top: 40px; left: 0px;\"><img alt=\"Lidl Fussballcup\" border=\"0\" height=\"455\" src=\"fileadmin/templates/images/lidl_playerlist_popup_bg_neu_1.jpg\" title=\"Lidl Fussballcup\" width=\"750\"></div><div style=\"position: relative; width: 500px; height: 430px; margin: 0px; padding: 0px; top: 35px; left: 20px;\"><img alt=\""+group_name+" aus "+group_location+"\" border=\"0\"  src=\""+group_image+"\" title=\""+group_name+" aus "+group_location+"\" width=\"500\"></div><div style=\"position: absolute; margin: 0px; padding: 0px; top: 415px; left: 20px;\"><p style=\"margin: 0px; padding: 0px; color: #ffffff; font-size: 12px;\"><strong>"+group_name+"</strong><br>"+group_location+"</p></div><div style=\"position: absolute; width: 96px; height: 77px; margin: 0px; padding: 0px; top: 35px; right: 18px;\"><a href=\"http://www.lidl.de\" target=\"_blank\"><img alt=\"Logo: LIDL\" border=\"0\" height=\"77\" src=\"fileadmin/templates/images/Lidl-Logo_weiss.png\" title=\"Logo: LIDL\" width=\"96\"></a></div><!--<div style=\"position: absolute; width: 100%; height: 20px; margin: 0px; padding: 0px; top: 333px; left: 0px; background-color: #8dd4f2; text-align: center;\"><p style=\"margin: 0px; padding: 0px;\"><a href=\"javascript:this.close()\" style=\"color: #000; font-size: 12px; text-decoration: none;\">FENSTER SCHLIESSEN</a></p></div>--></body></html>"); 
};

