function getinhoudgb(id)
{
  var httpRequest;
  var url="winkelwagen/winkelwagen_inhoud_gb.php?id="+id+"&amp;sid="+Math.random(); /* sid is necessary for internet explorer */
  /*var url="winkelwagen/winkelwagen_inhoud.php?id="+id+"&amp;sid="+Math.random()"&amp;lang="+_nl+"&amp;slang="+Math.random(); /* sid is necessary for internet explorer */

		
  if (window.XMLHttpRequest) 
    { // Mozilla, Safari, ...
    httpRequest = new XMLHttpRequest();
    if (httpRequest.overrideMimeType) 
      httpRequest.overrideMimeType('text/xml');
    } 
  else if (window.ActiveXObject) 
         { // IE
         try 
		   {
           httpRequest = new ActiveXObject("Msxml2.XMLHTTP");
           } 
         catch (e) 
		   {
           try 
		     {
             httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
             } 
           catch (e) {}
           }
         }

  if (!httpRequest) 
	{
    alert('Giving up :( Cannot create an XMLHTTP instance');
    return false;
    }
  httpRequest.onreadystatechange = function() { stateChanged(httpRequest); };
  httpRequest.open('GET', url, true);
  httpRequest.send(null);
} 

function stateChanged(xmlHttp) 
{ 
  if (xmlHttp.readyState==4)
    document.getElementById("winkelwagen").innerHTML=xmlHttp.responseText;
}
