// JavaScript Document
function getRandom()
{
var chiffre = Math.round(Math.random() * 32768/3267);
if (chiffre>9)
  chiffre = 3;
if (chiffre<0)
  chiffre = 6;
return chiffre;
   //return (Math.round(Math.random()*(10000-1000)))+1000;
}


