/*
  Dog Biscuit's "Yes & Led Zeppelin Trading Pages"
  Utility Functions common to find.js and generate.js
  Rev. 1.025 : 7 August 2004
  Copyright (C) 2001-2004 by JMK
  All rights reserved worldwide

  NOTES
  =====
*/

function find_tour(aBand, aTour)
{
  for (var y in tours)
    with (tours[y])
      if ((band == aBand) && (tour == aTour))
        return y;
  return -1;
}

