   // 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(GetNettiComfortCode(lsSize), "Netti Comfort (" + lsSize + ")", GetNettiComfortPrice());
         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();
   }
