<!--
var TestDoreDo = false;
if (isMinNS4)
{
  var origWidth = innerWidth;
  var origHeight = innerHeight;
  
  function reDo()
  {
	if (innerWidth != origWidth || innerHeight != origHeight){
	  location.reload();
    }
  }
}

function choixAlignement()
{
  var result = "<TD ALIGN='center'>";
  if (isMinNS4)
  {
    var testWidth = innerWidth;
	if (testWidth <= 720)
	{
	  result = "<TD>";
	  TestDoreDo = true;
	}
  }
  return result;
}

function LoadPage()
{
  var origWidth = 0;
  var origHeight = 0;
  if (isMinIE4)
  {
    origWidth = document.body.clientWidth;
	origHeight = document.body.clientHeight;
	if ((origWidth >= 720) && (origHeight >=465))
	{
	  document.body.scroll = "no";
	}
  }
}

function ouvrirFenetre(url,name,options)
{
  window.open(url,name,options);
}
//-->