Voici la liste des Instructeurs Internationaux :
| Date | Lieu | Nom | Prénom | Date Naissance | Age |
| Février 2002 | Chili | ETTINGER | Marc | 27/04/1961 | 41 |
| Février 2002 | Chili | LEBET | Gérard | 15/12/1953 | 49 |
| Février 2002 | Chili | MILLOT | Nicolas | 21/02/1971 | 31 |
| Février 2002 | Chili | SCHEURER | Lionel | 13/02/1977 | 25 |
| Août 2002 | Canada | BESSON | Raphaël | 05/01/1967 | 35 |
| Août 2002 | Canada | SANJOU | Frédéric | 03/03/1966 | 36 |
| Août 2002 | Canada | SÜESS | Alexandre | 15/02/1967 | 35 |
| Septembre 2002 | France | MORIN | Denis | 26/04/1962 | 40 |
| Novembre 2003 | Népal | GARNIER | Julien | 07/05/1974 | 29 |
| Novembre 2003 | Népal | MATTEI | Nicolas | 14/12/1972 | 31 |
| Avril 2004 | Corse | VAN RENSBURG | Charl | 18/03/1971 | 33 |
| Novembre 2004 | Équateur | CHÂTELAIN | Daniel | 25/11/1953 | 51 |
| Novembre 2004 | Équateur | LEFEBVRE | Marc | 14/06/1968 | 36 |
| Novembre 2004 | Équateur | PERRY | Sylvain | 03/08/1980 | 24 |
| Août 2007 | Italie | JOSHUA DAVID | Galt III | 02/03/1980 | 27 |
Les critères d’obtention sont les suivants :
- Avoir nagé sur 2 continents
- Avoir ouvert une palanquée en classe 5
- Avoir bu du River Tonic sur un autre continent
- Avoir minimum 5 ans de nage
- Avoir un sac bleu à fond orange (en fonction du pays de départ)
- Avoir 2 parrains
En fonction de l’unanimitĂ© du collège, l’une des règles 4 ou 5 peut ĂŞtre supprimĂ©e
", $titre);
$titre = ereg_replace("\#A", "
", $titre);
return $titre;
}
function cleanquotes($in)
{
return ereg_replace("'", "\'", ereg_replace("\"", "'", $in));
}
function encoder_mail($texte) {
$i = 0;
$fin = "";
while ($c = substr($mail, $i, 1))
{
$fin .= "" . ord($c) . ";";
$i++;
}
$aff = eregi_replace("&", "&", $fin);
return $aff;
}
function chiffre($unites,$genre=''){
if ($unites==1 AND $genre=='fem'){$retour="une";}
if ($unites==1 AND $genre!='fem'){$retour="un";}
if ($unites==2){$retour="deux";}
if ($unites==3){$retour="trois";}
if ($unites==4){$retour="quatre";}
if ($unites==5){$retour="cinq";}
if ($unites==6){$retour="six";}
if ($unites==7){$retour="sept";}
if ($unites==8){$retour="huit";}
if ($unites==9){$retour="neuf";}
return $retour;
}
function chiffre_sans($unites){
if ($unites==2){$retour="deux";}
if ($unites==3){$retour="trois";}
if ($unites==4){$retour="quatre";}
if ($unites==5){$retour="cinq";}
if ($unites==6){$retour="six";}
if ($unites==7){$retour="sept";}
if ($unites==8){$retour="huit";}
if ($unites==9){$retour="neuf";}
return $retour;
}
function chiffre_et($unites, $genre=''){
if ($unites==1 AND $genre=='fem'){$retour=" et une";}
if ($unites==1 AND $genre!='fem'){$retour=" et un";}
if ($unites==2){$retour="-deux";}
if ($unites==3){$retour="-trois";}
if ($unites==4){$retour="-quatre";}
if ($unites==5){$retour="-cinq";}
if ($unites==6){$retour="-six";}
if ($unites==7){$retour="-sept";}
if ($unites==8){$retour="-huit";}
if ($unites==9){$retour="-neuf";}
return $retour;
}
function chiffre_dix($unites){
if ($unites==0){$retour="dix";}
if ($unites==1){$retour="onze";}
if ($unites==2){$retour="douze";}
if ($unites==3){$retour="treize";}
if ($unites==4){$retour="quatorze";}
if ($unites==5){$retour="quinze";}
if ($unites==6){$retour="seize";}
if ($unites==7){$retour="dix-sept";}
if ($unites==8){$retour="dix-huit";}
if ($unites==9){$retour="dix-neuf";}
return $retour;
}
function chiffre_et_dix($unites){
if ($unites==0){$retour="-dix";}
if ($unites==1){$retour=" et onze";}
if ($unites==2){$retour="-douze";}
if ($unites==3){$retour="-treize";}
if ($unites==4){$retour="-quatorze";}
if ($unites==5){$retour="-quinze";}
if ($unites==6){$retour="-seize";}
if ($unites==7){$retour="-dix-sept";}
if ($unites==8){$retour="-dix-huit";}
if ($unites==9){$retour="-dix-neuf";}
return $retour;
}
function dizaines($dizaines,$unites,$genre=''){
if ($dizaines==0){
$retour=chiffre($unites,$genre);
}
if ($dizaines==1){
$retour=chiffre_dix($unites);
}
if ($dizaines==2){
$retour="vingt".chiffre_et($unites,$genre);
}
if ($dizaines==3){
$retour="trente".chiffre_et($unites,$genre);
}
if ($dizaines==4){
$retour="quarante".chiffre_et($unites,$genre);
}
if ($dizaines==5){
$retour="cinquante".chiffre_et($unites,$genre);
}
if ($dizaines==6){
$retour="soixante".chiffre_et($unites,$genre);
}
if ($dizaines==7){
$retour="soixante".chiffre_et_dix($unites);
}
if ($dizaines==8 & $unites>0){
$retour="quatre-vingt-".chiffre($unites,$genre);
}
if ($dizaines==8 & $unites==0){
$retour="quatre-vingts";
}
if ($dizaines==9){
$retour="quatre-vingt-".chiffre_dix($unites);
}
return $retour;
}
function par3($lavaleur,$demille,$genre='masc',$type=''){
if (strlen($lavaleur)==1){$lavaleur="00".$lavaleur;}
if (strlen($lavaleur)==2){$lavaleur="0".$lavaleur;}
$centaines=substr($lavaleur,0,1);
$dizaines=substr($lavaleur,1,1);
$unites=substr($lavaleur,2,1);
if ($centaines>1){
$cent="cents";
}
if ($demille=="mille"){
$cent="cent";
}
if ($dizaines+$unites>0){
$cent="cent";
}
if (($demille=="million" OR $demille=="milliard") AND $centaines+$dizaines+$unites>1){
$demille=$demille."s";
}
if ($centaines+$dizaines+$unites>0){
$demille=" ".$demille;
}else{
$demille="";
}
if ($centaines>0){
$retour=chiffre_sans($centaines)." $cent ".dizaines($dizaines,$unites,$genre);
}else{
$retour=dizaines($dizaines,$unites,$genre);
}
if (trim($retour)=="un" & trim($demille)=="mille"){
$retour="";
}
if (trim($retour)=="un" AND $type=='date'){
$retour="premier";
if($genre=='fem') $retour="première";
}
if($genre=='fem' AND $retour=="un") $retour="une";
return $retour.$demille;
}
function en_lettres($lavaleur,$genre='masc',$type=''){
$lavaleur=strrev($lavaleur);
$unites=par3(strrev(substr($lavaleur,0,3)),"","$genre","$type");
$milliers=par3(strrev(substr($lavaleur,3,3)),"mille");
$millions=par3(strrev(substr($lavaleur,6,3)),"million");
$milliards=par3(strrev(substr($lavaleur,9,3)),"milliard");
return trim("$milliards $millions $milliers $unites");
}
function jour_en_lettres($lavaleur){
return en_lettres($lavaleur,'','date');
}
function en_lettres_fem($lavaleur){
return en_lettres($lavaleur,'fem','');
}
function enlettres($lenombre,$unite='',$unites='',$entre='',$apres='',$apress=''){
$lenombre=ereg_replace(",",".",$lenombre);
$lenombre=explode(".",$lenombre);
$entier=$lenombre[0];
if ($entier>1 & strlen($unite)>0){
$unite=$unites;
}
$virgule=$lenombre[1];
if ($virgule>1 & strlen($apres)>0){
$apres=$apress;
}
if ($entier==0 OR $virgule==0){
$entre="";
}
if ($entier==0){
$unite="";
}
$entier=en_lettres($entier);
if ($virgule==0){
$apres="";
}
$virgule=en_lettres($virgule);
return trim("$entier $unite $entre $virgule $apres");
}
function ombrer($image)
{
$chemin = "";
if (empty($image)) return $image;
if(!is_readable($image))
{
$chemin = "IMG/";
if(!is_readable($chemin . $image))
{
$chemin = "IMG/gif/";
if(!is_readable($chemin . $image))
{
$chemin = "IMG/png/";
if(!is_readable($chemin . $image))
{
$chemin = "IMG/jpg/";
if(!is_readable($chemin . $image)) return $image;
}
}
}
}
$taille = GetImageSize($chemin . $image);
$texte = "



