function checkMultiples(product, multiple) {
	if (product.value % multiple != 0) {
		alert("Please enter items as a multiple of "+multiple);
		product.value = '';
    product.focus();
	}
}
