var us= null;
var IH; var PY;
var IMGH= 270;
var IHtexte; var PYtexte; 
var IE=0;

function def()
{  
   if (document.all) 
   {
        us= document.all.Sign.style
        IHtexte = "document.body.clientHeight";
        PYtexte = "document.body.scrollTop";
        IE=1;
   }

   if (document.layers) 
   {   
        us= document.layers.Sign;
        IHtexte = "window.innerHeight";
        PYtexte = "window.pageYOffset";
   }
   Signature()
} 
function Signature()
{
    if ((window.innerHeight != IH)||(window.pageYOffset != PY)||(IE==1))
  { 

        if (document.layers)  	us.visibility= "hide";
        if (document.all) 		us.display = "none";

        IH= eval(IHtexte);
        PY= eval(PYtexte);

		(IH > IMGH) ? us.top= (IH+PY-(IMGH+50)) : us.top= 0;
		us.left= 10;
        if (document.layers) us.visibility= "show";
		if (document.all) us.display = "";
 }
        setTimeout("Signature()",500);
}