﻿function fnBasketControl(oForm, sAction) {
	if (oForm.frmQuantity.value == 0) {
		alert('Antal skal være større end 0')
	} else {
		if (!fnIsValidChars(oForm.frmQuantity.value, '0123456789')) {
			alert('Der kan kun indtastes tal')
			oForm.frmQuantity.focus()
			return false;
		} else {
			oForm.frmAction.value = sAction
			oForm.submit();
		}
	}
}

