function getNewXMLHttpRequest() {
  var obj;
    try {
      // For Internet Explorer.
      obj = new ActiveXObject("Microsoft.XMLHTTP");
      }
    catch(e) {
      try {
        // Gecko-based browsers, Safari, and Opera.
        obj = new XMLHttpRequest();
      }
      catch (e) {
        // Browser supports Javascript but not XMLHttpRequest.
        obj = false;
      }
    }
    return obj;
}

function showIndexProduct(url) {
		//var show_produkt = document.getElementById("show_produkt");
		document.getElementById("show_product_image").src = url;
		//document.getElementById("show_product_link").href = "sortiment.php";

/*
		xmlhttp = getNewXMLHttpRequest();		
		xmlhttp.open("GET", "getIndexProduct.php?id="+id,true);
		xmlhttp.onreadystatechange=function() {
			if (xmlhttp.readyState==4) {
                show_produkt.innerHTML = xmlhttp.responseText;
			}
		}
		xmlhttp.send(null);
		*/
}

function showProductImage(id, url) {
		document.getElementById("show_product_image").src = url;
	
		var show_produkt = document.getElementById("show_produkt");

		xmlhttp = getNewXMLHttpRequest();		
		xmlhttp.open("GET", "getSortimentProduct.php?id="+id,true);
		xmlhttp.onreadystatechange=function() {
			if (xmlhttp.readyState==1) {
                show_produkt.innerHTML = "<div><img src='images/info_box_start.gif' style='float: left;' alt='' /><img src='images/info_box_end.gif' style='float: right;' alt='' /><div style='float: left; width: 366px;'><h2>Laddar...</h2></a></div>";
			}
			if (xmlhttp.readyState==4) {
                show_produkt.innerHTML = "<div><img src='images/info_box_start.gif' style='float: left;' alt='' /><img src='images/info_box_end.gif' style='float: right;' alt='' /><div style='float: left; width: 366px;'>"+xmlhttp.responseText+"</div></div>";
			}
		}
		xmlhttp.send(null);
}