
<!--
function clothesItemURL(f) {
   if (f.Size.selectedIndex < 0)
   {
      alert("Please select one of the \"Size\" options.");
      f.Size.focus();
      return (false);
    }

    if (f.Size.selectedIndex == 0)
    {
      alert("The first \"Size\" option is not a valid selection.  Please choose one of the other options.");
      f.Size.focus();
      return (false);
    }

    if (f.Color.selectedIndex < 0)
    {
      alert("Please select one of the \"Color\" options.");
      f.Color.focus();
      return (false);
    }

    if (f.Color.selectedIndex == 0)
    {
      alert("The first \"Color\" option is not a valid selection.  Please choose one of the other options.");
      f.Color.focus();
      return (false);
    }
    
  var itemSize=f.Size.options[f.Size.selectedIndex].value;
  var itemColor=f.Color.options[f.Color.selectedIndex].value;
  var itemSKU=f.itemSKU.value;
  document.location.href="/webapps/cart/dbzap.bin/Additem?StoreID=keepkidsalive&pItemCode=" + itemSKU + itemColor + itemSize;
}

function sizeItemURL(f) {
   if (f.Size.selectedIndex < 0)
   {
      alert("Please select one of the \"Size\" options.");
      f.Size.focus();
      return (false);
    }

    if (f.Size.selectedIndex == 0)
    {
      alert("The first \"Size\" option is not a valid selection.  Please choose one of the other options.");
      f.Size.focus();
      return (false);
    }

  var itemSize=f.Size.options[f.Size.selectedIndex].value;
  var itemSKU=f.itemSKU.value;
  document.location.href="/webapps/cart/dbzap.bin/Additem?StoreID=keepkidsalive&pItemCode=" + itemSKU + itemSize;
}

function accessoryItemURL(f) {
  var itemSKU=f.itemSKU.value;
  document.location.href="/webapps/cart/dbzap.bin/Additem?StoreID=keepkidsalive&pItemCode=" + itemSKU;
}

function hatItemURL(f) {
    if (f.Color.selectedIndex < 0)
    {
      alert("Please select one of the \"Color\" options.");
      f.Color.focus();
      return (false);
    }

    if (f.Color.selectedIndex == 0)
    {
      alert("The first \"Color\" option is not a valid selection.  Please choose one of the other options.");
      f.Color.focus();
      return (false);
    }
    
  var itemColor=f.Color.options[f.Color.selectedIndex].value;
  var itemSKU=f.itemSKU.value;
  document.location.href="/webapps/cart/dbzap.bin/Additem?StoreID=keepkidsalive&pItemCode=" + itemSKU + itemColor;
}

function storeNav (f) {
  var storeURL=f.Products.options[f.Products.selectedIndex].value;
  document.location.href = storeURL;
}

//-->