// JavaScript Document
var xmlhttp = false;
function loadProdKat(marke_id){
	//var man_id = $('manufac_' + num).value;
   
	var url = "http://www.condome.de/bb_bild_db/includes/ajax.produktkategorie.listing.inc.php?marke=" + marke_id;
	//var url = "http://www.colorgate.com/typo3conf/ext/cg_productconfigurator/res/ajax_device_selection.php?man_id=" + man_id + "&prd=" + prd + "&type=" + type + "&num=" + num + "&lang=" + lang;
	getHttpRequest(url, 'produktkategorien');
}


function setHTMLContent(update, text){
	document.getElementById('produktkategorien').innerHTML = text;
	GLT.init();
}

function getHttpRequest(url, update) {   
    var xmlhttp = null;
		var response = '';    
    if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); }// Mozilla
    else if (window.ActiveXObject) { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); }// IE
   
    xmlhttp.open("GET", url, true);
    xmlhttp.onreadystatechange = function() {
        if(xmlhttp.readyState == 4 && xmlhttp.status == 200) {
            setHTMLContent(update, xmlhttp.responseText);
        }
    }
    xmlhttp.send(null);
} 
