// Fonction de positionnement de la zone statique du panier
function positionit(){
	//if the user is using IE 4+
	if (document.all)
		divpanier.style.top=document.body.scrollTop+100
	//if the user is using NS6+
	else if (document.getElementById){
		document.getElementById("divpanier").style.top=pageYOffset+100
	}
	//else if the user is using NS 4
	else if (document.layers){
		document.divpanier.top=dsoctop+100
	}
}

