// Copyright (c) 2002 Bobby Williams  -  www.joyandbobby.com

function goToLink()
{
    select = document.LinkForm.LinkBox;
    value = select.options[select.selectedIndex].value;     
    if (value == "nojump")
        return;
    parent.document.location=value;
}

function writeOptions()
{
    for (i = 0; i < names.length; i++)
        document.write("<OPTION VALUE='"+values[i]+"'>"+names[i]+"</OPTION>");
}

var values = new Array(14);
var names = new Array(14);

values[0] = "http://www.joyandbobby.com/albums/wedding/index.html";
names[0] = "Wedding Photos"
values[1] = "http://www.joyandbobby.com/albums/elams_dune/index.html";
names[1] = "Elam's Dune, Namibia";
values[2] = "http://www.joyandbobby.com/albums/sossusvlei/index.html";
names[2] = "Giant Dunes of Sossusvlei";
values[3] = "http://www.joyandbobby.com/albums/namibia/index.html";
names[3] = "Travels in Namibia";
values[4] = "http://www.joyandbobby.com/albums/uganda2/index.html";
names[4] = "Travels in Uganda";
values[5] = "http://www.joyandbobby.com/albums/fitz2001/index.html";
names[5] = "Summer in Fitzwilliam";
values[6] = "http://www.joyandbobby.com/albums/mozambique/index.html";
names[6] = "Travels in Mozambique";
values[7] = "http://www.joyandbobby.com/albums/fire/index.html";
names[7] = "Fire in Mozambique";
values[8] = "http://www.joyandbobby.com/albums/gorillas/index.html";
names[8] = "Gorillas in the Midst";
values[9] = "http://www.joyandbobby.com/albums/zimbabwe/index.html";
names[9] = "The Ruins of Great Zimbabwe";
values[10] = "http://www.joyandbobby.com/albums/zimbabwe2/index.html";
names[10] = "Travels in Zimbabwe";
values[11] = "http://www.joyandbobby.com/albums/uganda/index.html";
names[11] = "Murchison Falls on the Nile";
values[12] = "http://www.joyandbobby.com/albums/dubrovnik/index.html";
names[12] = "Dubrovnik, Croatia";
values[13] = "http://www.joyandbobby.com/albums/cape/index.html";
names[13] = "The Cape of Good Hope";
