function bascule_voir(imagepath, imagelargeur, imagehauteur)
{
//imagelargeur = 580;
//imagehauteur = 320;
span_presente.style.visibility = "hidden";
document.all.MyImage.src = imagepath;
finalLeft = (screen.width - imagelargeur)/2;
//ajoute 30 en position top pour rester en dessous du menu
//finaltop = ((document.body.offsetHeight) - imagehauteur)/2 + 30;
if (document.all)
{
finaltop = ((document.body.offsetHeight) - imagehauteur)/2 + document.body.scrollTop + 30;
}
else
{
finaltop = ((document.body.offsetHeight) - imagehauteur)/2 + document.body.scrollTop - 80;
}
//span_presente.style.posTop = finaltop; // uniquement IE
span_presente.style.top = String(finaltop) + "px";
//span_presente.style.posLeft = finalLeft; // uniquement IE
span_presente.style.left = String(finalLeft) + "px";
span_presente.style.visibility = "visible";
}

function cacher(imagepath)
{
span_presente.style.visibility = "hidden";
document.all.MyImage.src = imagepath;
}
