 function order(produkt) {
     var x;
       if (document.getElementById) {
        try{x=new XMLHttpRequest();}
          catch (e){
            try{x=new ActiveXObject("Msxml2.XMLHTTP");}
            catch (e){
              try{x=new ActiveXObject("Microsoft.XMLHTTP");}
              catch (e){return;}
              }
            }
       }
       if (x) {
         x.onreadystatechange = function() {
           if (x.readyState == 4 && x.status == 200) {
             el = document.getElementById("order");
             window.location="http://rivertools.net/?p=3";
           }else{
              el = document.getElementById("order");
              el.innerHTML = "<br />Слага се в количката , моля изчакайте...";
			  
           }
         }
         x.open("GET",'kolichka.php?id='+produkt+'', true);
         x.send("");
       }
     }