/* This script retrieves the menu items selected by a customer from the Contact Us page
and combines them into a single value.
Original author: My Colorful Treasures
http://www.mycolorfultreasureswebdesign.com
Last Updated: Jan. 11, 2009
*/

function getMenuItems() {
  var menuSelection = "";
  for (var x=0; x < 5; x++) {
    if (document.form1.menuitem[x].checked) {
	  if (menuSelection == "") { 
	    menuSelection = document.form1.menuitem[x].value;
      } else {
	    menuSelection = menuSelection + ", " + document.form1.menuitem[x].value;
	  }
	}
  }
  document.form1.menuitems.value = menuSelection;
}