function initialiserFenetre()
{
	//PLACEMENT DU NAVIGATEUR SUR L'ECRAN + DIMENSIONNEMENT DU NAVIGATEUR TAILLE ECRAN
	window.moveTo(0,0);
	
	if ( document.getElementById || document.all )
	{
		window.resizeTo( screen.availWidth, screen.availHeight );
	}
	else if ( document.layers )
	{
	
		if ( window.outerHeight < screen.availHeight || window.outerWidth < screen.availWidth )
		{
			window.outerHeight = screen.availHeight;
			window.outerWidth = screen.availWidth;
		}
		
	}
}

function redimensionner( pWidth, pHeight )
{
	  var conteneur = document.getElementById("conteneur");
	  
	  if( conteneur.style.width < pWidth )
	  {
		conteneur.style.width = pWidth +"px";
	  }
	  else
	  {
		conteneur.style.width = "100%";
	  }
	  
	  
	  if( conteneur.style.height < pHeight )
	  {
		conteneur.style.height = pHeight + "px";
	  }
	  else
	  {
		conteneur.style.height = "100%";
	  }
	  
	  
	  
	  if( document.body.offsetWidth < pWidth ) 
	  {
		conteneur.style.width = pWidth +"px";
	  }
	  else
	  {
		conteneur.style.width = "100%";
	  }
	  
	  if( document.body.offsetHeight < pHeight )
	  {
		conteneur.style.height = pHeight + "px";
	  }
	  else
	  {
		conteneur.style.height = "100%";
	  }
}