function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
parent.window.location.href = URL;

}

document.write('<form name="form">');
document.write('<select name="site" size=1>');
document.write('<option value="../index.html">Home');
document.write('<option value="../Search.html">Search');
document.write('<option value="../OUR WARREN FAMILY FROM ENGLAND TO ALABAMA 1066-2008.html">OUR WARREN FAMILY FROM ENGLAND TO ALABAMA');


document.write('<option value="../My Trips.html">MY TRIPS');


document.write('<option value="../Collateral Family.html">COLLATERAL FAMILIES');



document.write('<option value="../download.html">Download Documentation');
document.write('<option value="../Photo/index.php">View Photos');
document.write('<option value="../video.html">Watch Videos');
document.write('<option value="CD for Sale.htm">CDs For Sale');
document.write('<option value="../Links.html">Recommended Links');



document.write('</select>');
document.write('<input type=button value="Go" onClick="javascript:formHandler()">');
document.write('</form>');
