function quantity(action, quantity,pp) {
	document.fbasket.action.value = action;
	document.fbasket.quantity.value = quantity;
	document.fbasket.pp.value = pp;
	document.fbasket.submit();
}
	
function handleKeyPress(e,form){
	var key=e.keyCode || e.which;
		
	if (key==13){
		quantity('manual', document.orderForm.quantity.value);
	}
}

function pp(action, quantity,pp){
	document.fbasket.action.value = action;
	document.fbasket.quantity.value = quantity;
	document.fbasket.pp.value = pp;
	document.fbasket.submit();
}

