gauche5 = (screen.width  / 2) - (250 / 2);
haut5 = (screen.height  / 2) - 150; // 150 = taille approximative du haut du navigateur (screen.height = resolution de lecran, pas du navigateur)


document.write('<STYLE TYPE="text/css">#waitbox { position:absolute;top:'+haut5+';left:'+gauche5+';width:250px;height:150px;border: 1px solid #000000;z-index:150;background-color:#FFFFFF;font-family: arial; font-size:11px; } .header{background-color:#FFD54D; font-family: arial; font-size:12px; font-weight:bold; padding:2px;} .applet{position:relative}</STYLE>');

ie4=document.all
ns6=document.getElementById&&!document.all
ns4=document.layers

function placeMenu5() 
{
	if (ie4) {waitbox.style.pixelTop=document.body.scrollTop+haut5}
	else if (ns6) {document.getElementById("waitbox").style.top=window.pageYOffset+haut5}
	else if (ns4) {eval(document.waitbox.top=eval(window.pageYOffset+haut5));}
	if(ie4 || ns6 || ns4)
		setTimeout("placeMenu5()",1);
}

function FinishedLoadingSounds()
{
	//dummy function
	//call it for hiding the waiting box
	document.getElementById('waitbox').style.visibility = "hidden";
}

function StartedLoadingSounds()
{
//dummy function
//call it for hiding the waiting box
}
