<!--

// debut positionnement
var NS4 = (document.layers) ? 1 : 0;
var IE4 = (document.all) ? 1 : 0;
var NS6 = (!document.all && document.getElementById) ? 1 : 0;



var anim=0;
var nb_layer=6;
//fin positionnement


function handlerMM(e)
	{ 
	if (NS4) 
		{
		x = e.pageX; 
		} 
	if (IE4)
		{
		x = event.x+document.body.scrollLeft; 
		}
	if (NS6)
		{
		x = e.pageX; 
		}
	} 
if (NS4 || NS6) 
	{
	document.captureEvents(Event.MOUSEMOVE);
	document.onmousemove = handlerMM; 
	}
// debut menu
function popUp(menuName) 
	{
	
	if (NS4) 
		{
		document.layers[menuName].left = x-50
		} 
	if (NS6) 
		{
		handlerMM();
		document.layers[menuName].left = x-50
	}
	if (IE4)
		{ 
		handlerMM();
		document.all[menuName].style.pixelLeft=x-50
		} 
	
	if (menuName)
		{
		desactiver();
		if (NS4) document.layers[menuName].visibility = "show" 
		if (IE4) document.all[menuName].style.visibility = "visible";
		if (NS6) document.getElementById(menuName).style.visibility="visible";	
		}
	}

function popDown(menuName)
	{
	if (document.images) 
		{
		clearTimeout(anim);
		if (NS6) document.getElementById(menuName).style.visibility="hidden";	
		if (NS4) document.layers[menuName].visibility = "hide" 
		if (IE4) document.all[menuName].style.visibility = "hidden";	
		}
	}	

function desactiver()
	{
	clearTimeout(anim);	
	for (i=1;i<nb_layer+1;i++)
		{popDown('im'+i);}
	}	

function tempo() 
	{
	if (document.images) 
        	{
        	clearTimeout(anim);
        	anim=setTimeout ("desactiver()", 500);
	        }
	}
function desactive_tempo() 
	{
	if (document.images) 
        	{
        	clearTimeout(anim);
        	}
	}
//fin menu

function ecrirehorloge(){
	if (IE4){
	//	document.write('<FORM NAME="horloge"><table border="0"><tr><td width="100" align="center" id="texthorloge">Paris</td><td width="100" align="center" id="texthorloge">Londres</td><td width="100" align="center" id="texthorloge">New York</td><td width="100" align="center" id="texthorloge">Tokyo</td><td width="100" align="center" id="texthorloge">Moscou</td><td width="100" align="center" id="texthorloge">Hong Kong</td></tr><tr><td align="center"><INPUT TYPE="text" SIZE="8" class="inputhorloge"></td><td align="center"><INPUT TYPE="text" SIZE="8" class="inputhorloge"></td><td align="center"><INPUT TYPE="text" SIZE="8" class="inputhorloge"></td><td align="center"><INPUT TYPE="text" SIZE="8" class="inputhorloge"></td><td align="center"><INPUT TYPE="text" SIZE="8" class="inputhorloge"></td><td align="center"><INPUT TYPE="text" SIZE="8" class="inputhorloge"></td></tr></FORM></table>');
		AffichHorloge ()
		}
	}

var tabhorloge=[1,0,19,9,3,8]
var nbhorloge=6;
function AffichHorloge () {
	    var date_cour = new Date();
	    var minutes  = (date_cour.getMinutes() < 10 ? ":0"+date_cour.getMinutes() : ":" + date_cour.getMinutes());
	    var secondes = (date_cour.getSeconds() < 10 ? ":0"+date_cour.getSeconds() : ":" + date_cour.getSeconds());
	  var  dategmt = new Date(date_cour.toGMTString());
	 var   heuresgmt = dategmt.getHours();
	
	   for (i = 0; i < nbhorloge; i++){
	  	var heures = heuresgmt + tabhorloge[i] - 1;
	   	if (heures >= 24) heures -= 24;
	   	if (heures < 0 ) heures += 24;
		document.horloge.elements[i].value = " "+ heures + minutes + secondes;
		}
	     setTimeout("AffichHorloge()",1000);
	}

		
var chargementlib=1;
//  --> 
