function popup(url, w, h){
	window.open(url, "winPopup", 'width='+w+', height='+h+', location=no, status=yes, menubar=no, directories=no, toolbar=no, resizable=yes');
}

function showText(code){
	popup("showdesc.asp?code="+code,500,400);
}

function deleteFromCart(url){
	
	
	document.location.href = 'winkelwageninhoud.asp';	
	popup(url, 500, 400);
	return false;
}

function changeAmount(artcode, amount){
	document.location.href = 'winkelwageninhoud.asp?artcode='+artcode+'&amount='+amount;
}

