function moveRounds(roundID, moveDir, tID)
{
var xmlHttp;
try
  {
  //Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    try
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    catch (e)
      {
     alert("Your browser does not support AJAX!");
      return false;
     }
    }
   }

  xmlHttp.onreadystatechange=function()
   {
    if(xmlHttp.readyState==4)
      {
      // Split the return string - we know the number so can send them to the correct place
      var outStr=xmlHttp.responseText;
      document.getElementById("tournamentInfo").innerHTML = outStr;
      }
    }
    
  var currentTime = new Date();
  var mytime = currentTime.getTime();
  
  xmlHttp.open("GET","includes/getRoundInfo.asp?rid=" + roundID + "+mid=" + moveDir + "+tid=" + tID + "+rt=" + mytime,true);
  xmlHttp.send(null);
  }
