       var div3 = document.getElementById("waterMark").style;
        var objet;

        function placeObj(px,py)
                {
                  div3.left=px;
                  div3.top=py;
                 }

        function voirMenu1()
                {
                  var posy;
                  if (navigator.appName=="Microsoft Internet Explorer")
                        {

                       taillen=document.body.clientHeight;
                       taillen=taillen-50;
                        offseti = document.body.scrollTop;
                        offsetxe = document.body.scrollLeft;

                        }
                  else
                        {

                        taillen=window.innerHeight;
                        taillen=taillen-50;
                        offseti = window.pageYOffset;
                        offsetxe = window.pageXOffset;


                        }
                  placeObj(10,offseti+taillen);


               tempo = setTimeout("voirMenu1()",50);
                }

if(document.getElementById)
        voirMenu1();
