/* ---------------------------- */
/* XMLHTTPRequest Enable 		*/
/* ---------------------------- */
function createObject1() {
	var request_type;
	var browser = navigator.appName;
	if(browser == "Microsoft Internet Explorer"){
		request_type = new ActiveXObject("Microsoft.XMLHTTP");
	}else{
		request_type = new XMLHttpRequest();
	}
		return request_type;
}


var http1;
/* -------------------------- */
/* SEARCH					 */
/* -------------------------- */
var aaaa=0;
function addanzahl(id) {
	http1 = createObject1();
	//q = document.getElementById(id).value;
	//alert(id);
	http1.open('get', 'sqlscript.php?add='+id);
	http1.onreadystatechange = autosuggestReply1;
	http1.send(null);
	
	
}
function reduceanzahl(id) {
	http1 = createObject1();
	//q = document.getElementById(id).value;
	http1.open('get', 'sqlscript.php?reduce='+id);	
	http1.onreadystatechange = autosuggestReply1;
	http1.send(null);
	location.href='index.php?area=warenkorb';
}
function deleteartikel(id) {
	http1 = createObject1();
	//q = document.getElementById(id).value;
	http1.open('get', 'sqlscript.php?delete='+id);	
	http1.onreadystatechange = autosuggestReply1;
	http1.send(null);
	var browser = navigator.userAgent.toLowerCase();
	if (browser.indexOf("firefox") != -1){
		alert('Produkt aus dem Warenkorb entfernt!');
	}
	location.href='index.php?area=warenkorb';
}
function autosuggestReply1() {
	var response = http1.responseText;
	//document.getElementById('warenkorbansicht').style.background = '#ffffff';
	//document.getElementById('warenkorbansicht').style.opacity = 0.3;
	if(document.getElementById('spacer1')){
		var spacer2 = getElementCoords(document.getElementById('spacer1'));
		document.getElementById("warenkorbansicht").style.left=(spacer2.x)+'px';
		document.getElementById("warenkorbansicht").style.top=document.getElementById('warentabelle').style.top;//spacer2.y;
		document.getElementById("warenkorbansicht").style.height = document.getElementById('warentabelle').clientHeight+'px';
		if(document.getElementById('warenkorbansicht').filters){
			document.getElementById('warenkorbansicht').filters.alpha.opacity=50;
		}else{
			document.getElementById('warenkorbansicht').style.opacity = '0.7';
		}
		
		document.getElementById('warenkorbansicht').style.backgroundColor = '#ffffff';
	}
	document.getElementById('warenkorbansicht').innerHTML = '<table border=0 bgcolor="#ffffff" width=930><tr><td align=center><font class=textmain1111><b>Bitte warten Sie einen Moment</b></font></td></tr></table>';
	
	
}


