a1="钟小姐(Sharon): 0755-83660049/15989383002<br/>"
a2="李小姐(Shirley): 0755-61688906/13823604976<br/>"
a3="李小姐(Isabel): 0755-83660899/13603037350<br/>"
a4="周小姐(Maggie): 0755-83660212/13631647100<br/>"
a5="汤小姐(Della): 13760160655<br/>"

//随机改变数组的排序
theAds=new Array(); 
theAds[1]=a1
theAds[2]=a2 
theAds[3]=a3
theAds[4]=a4
theAds[5]=a5
shu = 5
adshu=shu+1
dot=''
theAds2=''
function Quickpick()
{
  var ball
  for( ball = 1; ball < adshu; ball++)
  {
    this[ball] = parseInt(Math.random() * shu + 1);
    for(var list = 0; list < ball; list++)
    {
      if(this[list] == this[ball])
      {       
        list = ball;
        ball--;
      }
    }
  }
  return this;
}
