function abindenkorb(itemID) {
	var itemhandle= new Ajax;
	var randvali=Math.floor(Math.random()*1000000000);
	
	itemhandle.url="http://www.lichtideen.at/incs/abindenkorb.php";
	itemhandle.params="rand="+randvali+"&itemID="+itemID;
	itemhandle.onSuccess=successItemHandler;
	itemhandle.onError=errorItemHandler;
	itemhandle.doRequest();
}

function errorItemHandler(msg) {}
function successItemHandler(txt, xml) {
	// alert(txt);
	var temp = txt.split("|||");
	document.getElementById('korbcont').style.display='';
	document.getElementById('korbanz').innerHTML=temp[0];
	alert ("Der Artikel '"+temp[1]+"' wurde in den Warenkorb gelegt!");
	}
