function df(){
  //DEFINE O VALOR DO X E Y
  //////////////////////////////////////////////////////////////////////////////
  if (self.innerHeight)
  {
    x = (self.innerWidth);
    y = (self.innerHeight);
  }
  else 
  if (document.documentElement && document.documentElement.clientHeight)
  {
   x = (document.documentElement.clientWidth);
   y = (document.documentElement.clientHeight);
  }
  else
  if (document.body)
  {
   x = (document.body.clientWidth);
   y = (document.body.clientHeight);
  }
  else
  if (screen)
  {
    x = (screen.width);
	y = (screen.height);
  }
  ///////////////////////////////////////////////////////////////////////////////


  y = (y/2)-305;
  x = (x/2)-385;
  
 
  var objeto = document.getElementById("tudo");
  
  objeto.style.visibility="visible";
  objeto.style.position="absolute";    
//  objeto.style.top = y;
  objeto.style.left = x;
  
 
}