// Affichage de la météo
// (c) Alliance Réseaux 2000 - MY
function affichemeteo4()
{
var basc=1
var temperat=""
if (imet>0) {
document.write("
");
document.write(" |
");
document.write("| LA METEO... |
");
document.write(" |
");
// document.write("La Météo en Maurienne... |
");
document.write(" | ");
for (j=0;j<=(imet-1);j++)
{
meteo=bmeteo[j].split("#")
if(meteo[1]!=""){
switch (meteo[1]){
case '1': comment="Très ensoleillé";break;
case '2': comment="Ensoleillé";break;
case '3': comment="Variable";break;
case '4': comment="Couvert";break;
case '5': comment="Pluie";break;
case '6': comment="Neige";break;
case '7': comment="Orageux";break;
default: comment=""; break;
}
if (meteo[4]==""){
temperature="";}
else {
temperature="Température : "+meteo[4]+"°C";
}
document.write(""+meteo[3]+"
 "+comment+" "+temperature+" "+meteo[2]+" | ");
document.write(" | ");
}
}
document.write(" ");
document.write("
|
");
document.write(" |
| Pour plus d'infos, consultez le site de Météo France |
");
document.write(" |
");
document.write("
");
}
}
affichemeteo4();