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);
  }
  ///////////////////////////////////////////////////////////////////////////////

     var objeto = document.getElementById("tudo");

  if (x > 850)
  {
	  y = (y/2)-302;
	  x = (x/2)-390;
	  
  
	  objeto.style.position="absolute";    
	  objeto.style.top = 0;
	  objeto.style.left = x;
	  objeto.style.border="1px solid #cccccc"
	  objeto.style.backgroundColor="#FFFFFF"
	  document.body.background="images/FUNDOREPETE2.jpg"
 };


 
}