function CreateXmlHttpObjet()
{
  var xmlHttp = null;

  try
  {
    // Firefox, Opera 8.0+, Safari
    xmlHttp = new XMLHttpRequest();
  }
  catch( e )
  {
    // Internet Explorer
    try
    {
      xmlHttp = new ActiveXObject( "Msxml2.XMLHTTP" );
    }
    catch( e )
    {
      xmlHttp = new ActiveXObject( "Microsoft.XMLHTTP" );
    }
  }

  
  return xmlHttp;
}

function armystats()
{
  setInterval("window.location.reload()",60000);
  
  xmlHttp = CreateXmlHttpObjet();
  
  if( xmlHttp == null )  return ;
  
  xmlHttp.onreadystatechange = function()
  {
    document.getElementById( 'googlebox' ).innerHTML = xmlHttp.responseText;
  }
  xmlHttp.open( 'GET', 'http://www.black-sheep-aao.de/sofa/army_stats_first.php', true );
  xmlHttp.send( null );
}  


