function ajaxRating(theProdid,theID,theRating)
          {
          document.getElementById('divRating1').innerHTML = '<img src="/gfx/rating/ratingwait.gif" border="0">'; 
          document.getElementById('divRating2').innerHTML = '<img src="/gfx/rating/ratingwait.gif" border="0">'; 
          document.getElementById('divRating3').innerHTML = '<img src="/gfx/rating/ratingwait.gif" border="0">';
          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("Gelieve uw javascript aan te leggen, zoniet kunt u niet ten volle genieten van onze website!");
                return false;
                }
              }
            }
            xmlHttp.onreadystatechange=function()
              {
              if(xmlHttp.readyState==4)
                {
                //document.getElementById('divRating').innerHTML=xmlHttp.responseText;
                //location.reload(true);
                __doPostBack('','');
                }
              }
            xmlHttp.open("GET","/src/rating.aspx?prodid="+theProdid+"&id="+theID+"&rating="+theRating,true);
            xmlHttp.send("");
          } 
