function getAjax(){
  if (window.ActiveXObject) { // для IE 
     return new ActiveXObject("Microsoft.XMLHTTP");
  } else if (window.XMLHttpRequest){
     return new XMLHttpRequest();
  } else {
     alert("Browser does not support AJAX.");
     return null;
    }
}
function loadcards(cid,photo){
  document.getElementById('cards').style.display="block";
  document.getElementById('wrapper').style.filter="alpha(opacity=50)";
  document.getElementById('wrapper').style.opacity="0.5";
    ajax=getAjax();
      if (ajax != null) {    
        ajax.open("GET", "include/shop.php?cid="+cid+"&photo="+photo,true);
        ajax.send(null);
        ajax.onreadystatechange = function(){
          if (ajax.responseText == "false"){
             alert('Произошол сбой при добавление товара, попробуйте добавить товар позднее.');
          }
        }
      }
  setTimeout("niloop()", 3000);
}

function niloop(){
  document.getElementById('cards').style.display="none";
  document.getElementById('wrapper').style.filter="100";
  document.getElementById('wrapper').style.opacity="100";
}


