//-----------------------//
// Fonction de debuguage //
//-----------------------//
function show(objet,nom)
{
var text="";
j=0;
for (var i in objet)
   {
   j++;
   text+=nom+"."+i+"="+objet[i]+"\n";
   if (j==30)
     {
     alert(text);  
     text='';
     j=0;
     }
   }
if (j!=0) {alert(text);}
}