/*
the functions here meant to check the number of clicks on different elements in the site
*/

function onLoadIncrement(page)
{
//TODO (see if there is a browser problem here)
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)
      {
      return false;
      }
    }
  }

var currentTime = new Date();
timp = currentTime.getMinutes()+"-"+currentTime.getSeconds();

xmlHttp.open("GET","/clicktest.php?page="+page+"&click=no"+"&timp="+timp,true);
xmlHttp.send(null);
}

function onClickIncrement(page,element)
{
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)
      {
      return false;
      }
    }
  }

var currentTime = new Date();
timp = currentTime.getMinutes()+"-"+currentTime.getSeconds();

	xmlHttp.open("GET","/clicktest.php?page="+page+"&click=yes"+"&element="+element+"&timp="+timp,true);
	xmlHttp.send(null);
}

