/*
St Blazeys Football Club
Written by Ian Collier, of lidd Consulting (http://lidd.net) on behalf of Atonic Internet Limited
This work copyright Atonic Internet Limited
Please do not copy or modified this work without seeking the express permission of
the copyright holder beforehand.
Thank you
*/

/* shopping pages supporting javascript file */

// function to set a cookie
function setshoppingcookie(item) {
  // get the selected quantity
  var idx=document.getElementById("selqty"+item).selectedIndex;
  var qty=document.getElementById("selqty"+item).options[idx].value;
  // set appropriate cookie, depending on item
  document.cookie="stblazeyshopping_"+item+"="+qty;
}

