function draw()
  {
  window.location.reload()
  }

function draw2()
  {
  if (document.layers)
    {
    voila()
    setTimeout('window.onresize=draw',450)
    }
  }

function snap(cont)
  {
  if (document.all||document.getElementById)
    {
    croix=document.getElementById? document.getElementById('descriptions'):document.all.descriptions
croix.innerHTML=cont
    }
    else if (document.layers)
      {
      document.d1.document.d2.document.write(cont)
document.d1.document.d2.document.close()
      }
  }

function voila()
  {
  document.d1.visibility='show'
  }

window.onload=draw2


