function showOrHidePromoSplash(styleDisplay) {
	if (document.getElementById("promosplash")) {
		objdivS=document.getElementById("promosplash").style;
		objdivS.display=styleDisplay;
	}
}

var ishome=1;
var currentStyleSplash="";
function setSplashInfos() {
	getWindowHW(); //nécessite la présence de mytools.js
	if (document.getElementById("promosplash")) {
		objdivS=document.getElementById("promosplash").style;
		objH=parseInt(objdivS.height);
		objW=parseInt(objdivS.width);
		newL=(winW2use-objW)/2;
		newT=(winH2use-objH)/2;
		objdivS.left=newL+"px"; objdivS.top=newT+"px";
	}
}

