<!--

function buildArray() {
  var a = buildArray.arguments;
  for (i=0; i<a.length; i++) {
    this[i] = a[i];
  }
  this.length = a.length;
}

var urls1 = new buildArray("",
"http://www.dogsofthedow.com/dogform.htm",
"http://www.dogsofthedow.com/doggish.htm",
"http://www.dogsofthedow.com/prevdoggish.htm",
"http://www.dogsofthedow.com/dogs2012.htm",
"http://www.dogsofthedow.com/dogday.htm",
"http://www.dogsofthedow.com/dogweek.htm",
"http://www.dogsofthedow.com/dogytd.htm",
"http://www.dogsofthedow.com/thedow.htm",
"http://www.dogsofthedow.com/dogsteps.htm",
"http://www.dogsofthedow.com/faq.htm",
"http://www.dogsofthedow.com/faq2.htm",
"http://www.dogsofthedow.com/sitetips.htm",
"http://www.dogsofthedow.com/dognews.htm",
"http://www.dogsofthedow.com/glossary.htm",
"http://www.dogsofthedow.com/searcheg.htm",
"http://www.dogsofthedow.com/tdbrokers.htm",
"http://www.dogsofthedow.com/tdbfeedback.htm",
"http://www.dogsofthedow.com/tdbform.htm",
"http://www.dogsofthedow.com/dogyrs.htm",
"http://www.dogsofthedow.com/dogs2011.htm",
"http://www.dogsofthedow.com/dogs2010.htm",
"http://www.dogsofthedow.com/dogs2009.htm",
"http://www.dogsofthedow.com/dogs2008.htm",
"http://www.dogsofthedow.com/dogs2007.htm",
"http://www.dogsofthedow.com/dogs2006.htm",
"http://www.dogsofthedow.com/dogs2005.htm",
"http://www.dogsofthedow.com/dogs2004.htm",
"http://www.dogsofthedow.com/dogs2003.htm",
"http://www.dogsofthedow.com/dogs2002.htm",
"http://www.dogsofthedow.com/dogs2001.htm",
"http://www.dogsofthedow.com/dogs2000.htm",
"http://www.dogsofthedow.com/dogs99.htm",
"http://www.dogsofthedow.com/dogs98.htm",
"http://www.dogsofthedow.com/dogs97.htm",
"http://www.dogsofthedow.com/dogs96.htm",
"http://www.dogsofthedow.com/accolade.htm",
"http://www.dogsofthedow.com/accform.htm");

function go(which, num, win) {
  n = which.selectedIndex;
  if (n != 0) {
    var url = eval("urls" + num + "[n]")
    if (win) {
      openWindow(url);
    } else {
      location.href = url;
    }
  }
}

//-->
