function formgallery(form){
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="javascript:formgallery()" style="background-color:#ffffff; color:#506eba; font-family:Verdana, Arial, Helvetica, sans-serif, font-size:1;">');
document.write('<option value="#">>> Go to...');
document.write('<option value="http://www.quarterpath.com/index.htm">- Home');
document.write('<option value="http://www.quarterpath.com/rooms.htm">- Rooms');
document.write('<option value="http://www.quarterpath.com/packages.htm">- Packages');
document.write('<option value="http://www.quarterpath.com/reservations.htm">- Reservations');
document.write('<option value="http://www.quarterpath.com/things.htm">- Things to Do!');
document.write('<option value="http://www.quarterpath.com/map.htm">- Map');
document.write('<option value="http://www.quarterpath.com/fyi.htm">- FYI/FAQs');
document.write('<option value="http://www.quarterpath.com/groups.htm">- Groups');
document.write('<option value="http://www.quarterpath.com/specials.htm">- Specials');
document.write('</select>');
document.write('</form>');
