function wishpot_getoptions()
{
  var frm = jQuery("form[action*='order.store.yahoo']");
  if (frm.length == 0)
    frm = jQuery("form[action*='test-order']");

  var options = "";
  jQuery(frm).find("select").each( function() {
    if (options != "")
      options += ", ";
    options += this.name + " = " + jQuery(this).val();
  });
  jQuery("#wishpotForm").find("input[name=Notes]").val( options );
}

