
function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form name="form">');
document.write('<select name="site" size=1 onChange ="formHandler(this.form)">');
document.write('<option value="">More Vet pages....');
document.write('<option value="index.cfm?action=home">Main Site Home Page');
document.write('<option value="index.cfm?action=Pow">POW/Veteran&acute;s  Index');
document.write('<option value="index.cfm?action=Freedom3">Freedom Is Not Free**');
document.write('<option value="index.cfm?action=Homefront">The Home Front**');
document.write('<option value="index.cfm?action=SilSoldiers">The Silent Soldiers**');
document.write('<option value="index.cfm?action=Heroes2">Star Spangled Heroes**');
document.write('<option value="index.cfm?action=Columbia2">Columbia (and The Seven)**');
document.write('<option value="index.cfm?action=WBYondr">The Wild Blue Yonder**');
document.write('<option value="index.cfm?action=flash/Shuttle">Tribute to The Columbia**');
document.write('<option value="index.cfm?action=Soldier02">A Soldier&acute;s Christmas');
document.write('<option value="index.cfm?action=Theycarried">The Things They Carried...');
document.write('<option value="index.cfm?action=TUvets2">A Simple Thank You');
document.write('<option value="index.cfm?action=Heros">Heroes!');
document.write('<option value="index.cfm?action=Main">My Adopted POW');
document.write('<option value="index.cfm?action=Remember2">Always Remember');
document.write('<option value="index.cfm?action=3pieces">Three Pieces of Brass');
document.write('<option value="index.cfm?action=Served">To Those Who Served');
document.write('<option value="index.cfm?action=Thankyouvets">Thank You Vets!');
document.write('<option value="index.cfm?action=Flag2">Pass the Flag to Me');
document.write('<option value="index.cfm?action=Thoughts">A Soldier&acute;s Thoughts');
document.write('<option value="index.cfm?action=Prayervet">A Soldier&acute;s Prayer');
document.write('<option value="index.cfm?action=Flag">A Forgotten Flag');
document.write('<option value="index.cfm?action=Flight">High Flight');
document.write('<option value="index.cfm?action=Welcomehome">Welcome Home Vets!');
document.write('<option value="index.cfm?action=Wall">The Wall');
document.write('<option value="index.cfm?action=Farewell">Farewell');
document.write('<option value="index.cfm?action=Xmas99">Santa Weeps');
document.write('<option value="index.cfm?action=Xmas00">The Night Before Christmas');
document.write('</select>');
document.write('</form>');


