var cijfer = 0;
function stem(id,score)
{
	var url = "stemmen.php?qrnd=" + Math.random() + '&id=' + id + '&score=' + score;
	xmlHttp = GetXmlHttpObject(updateScore);
	xmlHttp.open("GET", url , true);
	xmlHttp.send( null );
	cijfer = score;
}

function updateScore()
{
	if (xmlHttp.readyState == 4 || xmlHttp.readyState == "complete")
	{
		if (xmlHttp.status == 200 )
		{
			if ( xmlHttp.responseText == 'al' )
			{
				alert('Je hebt al eens gestemd op dit spel!');
			}
			else
			{
				document.getElementById("stem_cijfers").innerHTML = '<p><img src="images/' + cijfer + '.png" align="absmiddle" style="margin-right: 15px;" /> Je hebt dit spel een <b>' + cijfer + '</b> gegeven!</p>';
				document.getElementById("stemmen").innerHTML = xmlHttp.responseText;
				//xmlHttp.responseText
			}
		}
		else 
		{
			alert (xmlHttp.statusText);
		}
	}
}

function bookmarksite(title, url)
{
   if (document.all)
   {
      window.external.AddFavorite(url, title);
   }
   else if (window.sidebar)
   {
      window.sidebar.addPanel(title, url, "");
   }
}
