/* catalog.js */

function checkQuantity() {
  if( document.getElementsByName( 'quantity' )[0].selectedIndex == 0 ) {
    alert( 'You must select a quantity greater than zero before adding this item to your cart.' );
    return false;
  }
  return true;
}
