<!--
function RedimTaille(){

	DimEcran = screen.width;
	nom=navigator.appName;
	if(DimEcran <= 800){
		document.getElementById('centre').style.margin=0;
		document.getElementById('centre').style.top=0;
		document.getElementById('centre').style.left=0;
		
	}
	
	if(DimEcran <= 1024){
		// maximisisation de la fenêtre
		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;
		   }
		 }	
	}
	
	if(nom=="Microsoft Internet Explorer"){
		document.getElementById('rub.ul.li').style.marginLeft=0;
	}
}
function initScrollLayers() {
  // arguments: id of layer containing scrolling layers (clipped layer), id of layer to scroll, 
  // if horizontal scrolling, id of element containing scrolling content (table?)
  var wndo1 = new dw_scrollObj('wn', 'lyr', null);

  // arguments: dragBar id, track id, axis ("v" or "h"), x offset, y offset
  // (x/y offsets of dragBar in track)
  wndo1.setUpScrollbar("dragBar", "track", "v", 1, 1);

  
  // Read instructions if your scrolling layers are inside tables 
  
  // Scrollbars initially hidden in this example 
  dw_showLayers("scrollbar");
}

function dw_showLayers() {
  if ( document.getElementById ) {
    var lyr, i;
    for (i=0; arguments[i]; i++) {
      lyr = document.getElementById( arguments[i] );
      lyr.style.visibility = "visible";
    }
  }
}
function schema(page)
       {
	   var Left=window.screen.width/2-320;
	   var Top=window.screen.height/2-240;
	   var Configuration="' menubar=no, toolbar=no, location=no, directories=no, resizeable=no, scrollbars=no, width=640, height=480, left=" + Left + ",top=" + Top;
	   window.open(page,'',Configuration);
	   }