function updatebasket(){
	
	 document.getElementById('basket').src = '/electroshop/b_info.php';
	
	}

function buy(id){
	
	 document.getElementById('basket').src = '/electroshop/b_info.php?add='+id;
	
	}
	
function st(id){
	
	
	 document.getElementById('basket').src = '/electroshop/b_info.php?st='+id;
	 
	 window.location.reload();
	
	}
	
function xreload(){
	
	
	 window.location.reload();
	
	}
	
function getXmlHttp(){
  var xmlhttp;
  try {
    xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
  } catch (e) {
    try {
      xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    } catch (E) {
      xmlhttp = false;
    }
  }
  if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
    xmlhttp = new XMLHttpRequest();
  }
  return xmlhttp;
}
