
				function AllowOrder (select, productId, stockCounts, quantity) {
					if (stockCounts[select.selectedIndex] >= quantity) {
						document.getElementById ('AddToCart' + productId).style.visibility = 'visible';
						document.getElementById ('StockWarning' + productId).innerHTML = '';
					}
					else {
						document.getElementById ('AddToCart' + productId).style.visibility = 'hidden';
						document.getElementById ('StockWarning' + productId).innerHTML = 'Požadované množstvo nie je na sklade.';
					}
				}
				
				function AllowOrderProduct (productId, stockCount, quantity) {
					if (stockCount >= quantity) {
						document.getElementById ('AddToCart' + productId).style.visibility = 'visible';
						document.getElementById ('StockWarning' + productId).innerHTML = '';
					}
					else {
						document.getElementById ('AddToCart' + productId).style.visibility = 'hidden';
						document.getElementById ('StockWarning' + productId).innerHTML = 'Požadované množstvo nie je na sklade.';
					}
				}
