function clubs(index)
{

  document.write('<table id="table_clubs" style="display:none" width="100%" border="0" cellpadding="5" cellspacing="0" >')
  document.write('	<tr><td>')
  page_title(array_menu_jka[index]["title"])
  document.write('  </td></tr>')
  document.write('  <tr>')
  document.write('    <td align="center"  valign="top">')
  clubs_data()
  document.write('	  </td>')
  document.write('  </tr>')
  document.write('</table>')
}
function clubs_data()
{
document.write('	    <table width="100%" border="0" cellpadding="10">')
for (var index=0;index<jka_club.length;index++)
{
  //document.write('      <TR height="20">')
  document.write('          <tr>')
  document.write('          <TD class="normal_color1">')
  if (jka_club[index]["Lien"]!="")
  {
  	document.write('          <a href="http://'+jka_club[index]["Lien"]+'" target="blank"><b><u>'+jka_club[index]["Nom"]+'</u></b></a>')
  }
  else{
    document.write('          <b>'+jka_club[index]["Nom"]+'</b>')
  }
  document.write('<span class="small_color1"><br/>'+jka_club[index]["Adresse"]+'<br/>'+jka_club[index]["Tel"]+'</span></TD>')
  document.write('          <td class="normal_color1" valign="top">'+jka_club[index]["Contact"]+'</TD>')
  //document.write('          <td class="normal_color1">'+jka_club[index]["Tel"]+'<br/></TD>')  
  document.write('          </tr>')
  //document.write('          <tr><TD class="normal_color1"><b>'+jka_club[index]["Adresse"]+'</b></TD><td class="normal_color1">Tél:'+jka_club[index]["Num_Fed"]+'</td></tr>')
  //document.write('          <TD class="normal_color1"><b>'+jka_club[index]["Contact"]+'</b></TD>')
  //document.write('      </TR>')
}
document.write('      </table>')
}
