function addProduct( product )
{

	var qty = document.getElementById("qty["+product+"]").value;

	if(qty > 0 && product > 0) {

		doAjax("/fajax/module/Cart/?task=add_product&view=minicart&product="+product+"&qty="+qty, "minicart", 0);

	}
 
}

function setPostal( id, target ) {
				var nummer =  document.getElementById( id ).value;
				if (nummer.length == 4) {
					doAjax("/ajax/postnummer/"+nummer, target, 0);
				}
			}
	
			
			
	

function incProduct( product )
{
	
	document.getElementById("qty["+product+"]").value =  parseInt(document.getElementById("qty["+product+"]").value)+1;
	
}
function decProduct( product )
{
	if(parseInt(document.getElementById("qty["+product+"]").value) > 0)
	document.getElementById("qty["+product+"]").value =  parseInt(document.getElementById("qty["+product+"]").value)-1;
	
}
