
function rotationFlash(listeImage, width, height, alt) {
 
    var i = 0;
    var p = listeImage.length;

    var whichImage = Math.round(Math.random()*(p-1));

    //function showFlash(){
    document.write('<object type="application/x-shockwave-flash" data="'+listeImage[whichImage]+'" width="'+ width +'" height="'+height+'" alt="'+alt+'" title="'+alt+'"><param name="movie" value="'+listeImage[whichImage]+'" /><param name="loop" value="true" /><param name="play" value="true" /></object>');
}

function rotationImage(listeImage, width, height, alt) {
 
    var i = 0;
    var p = listeImage.length;

    var whichImage = Math.round(Math.random()*(p-1));

    //function showFlash(){
    document.write('<img src="'+listeImage[whichImage]+'" width="' +width +'" height="'+height +'" alt="'+alt+'" title ="'+ alt + '"/>');
}
