/*if (browser=="Netscape"&&version<5) {divheight+=55;} //fix de bug de Netscape 4 pour le positionnement de la barre du bas*/
//ecriture du CSS en fonction du navigateur.
document.write('<style type="text/css" media="screen">');

//taille du layer Information
	document.write('#information { height: ' + divheight + ' ; ');
	document.write(' top: ' + layertop + ' ; ' );
	document.write(' left: ' + layerleft + ' ; ' );
	document.write(" width: " + divwidth + ';} ');
//taille du layer Information Shadow (2 pixels plus bas pour l'ombre)
	document.write('#infoshadow { height: ' + divheight + ' ; ');
	document.write(' top: ' + (layertop + 4) + ' ; ' );
	document.write(' left: ' + (layerleft +2) + ' ; ' );
	document.write(" width: " + divwidth + ';} ');
//hauteur de la nav du bas (10 pixels plus bas que la fin du layer)
	document.write('#bottombar {top:' + (divheight + layertop + 15) + ';}');	
document.write('</style>');

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);