﻿function fnFormBasketQuantityControlCheck(oForm) {
	if (oForm.frmQuantity.value != '' ) {
		var sValue = oForm.frmQuantity.value;
		if (!fnIsValidChars(sValue, '0123456789')) {
			alert("Antal må kun indeholde tal og skal være større end 0")
			oForm.frmQuantity.focus()
			return false
		}
	}
}
