   // Check if we should clear the cart
   // (after a submit)
   CheckSubmitted();

   function AddToCart(poSize) {

      // Get value
      var lsSize = poSize.options[poSize.selectedIndex].value;

      // Check if nothing selected
      if (lsSize == "none")
         alert("You did not select a size.");
      else {
         AddItem(GetNettiMelissaCode(lsSize), "Netti Melissa (A1) (" + lsSize + ")", GetNettiMelissaPrice());
         window.location.href = "/cart/";
      }

   }
   
   function OpenMeasuringInstructions() {
      var objWindow = window.open("/common/html/measuringinstructions.html", "measuringinstructions", "width=595,height=550,location=no,resizable=no,menubar=no,scrollbars=yes,titlebar=yes,status=no,toolbar=no");
      objWindow.focus();
   }
