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">');
document.write('<OPTION VALUE="default.htm">Home</OPTION>');     
document.write('<OPTGROUP LABEL="Accommodation">');
document.write('<OPTION VALUE="chapel.htm">Chapel</OPTION>');         
document.write('<option value="Summerh.htm">Summerhouse</OPTION>'); 
document.write('<OPTION VALUE="sanctury.htm">Sanctuary</OPTION>');   
document.write('<option value="gate_kep.htm" >GateKeepers Cottage</OPTION>');
document.write('<option value="chalets.htm">Chalets</OPTION>');
document.write('</OPTGROUP>');
document.write('<OPTGROUP LABEL="Activities">');
document.write('<OPTION VALUE="hrse_rid.htm" >Horse Riding</OPTION>');  
document.write('<OPTION VALUE="activity.htm" >Activities</OPTION>');  
document.write('<OPTION VALUE="dog.htm">Dogs Welcome</OPTION>'); 
document.write('<OPTION VALUE="surf.htm">Surf & Sand</OPTION>'); 
document.write('<OPTION VALUE="pamper.htm">Massage and Spa</OPTION>');
document.write('<OPTION VALUE="pampering_packages.htm">Pampering and Healthly Lifestyle Packages</OPTION>');
document.write('<OPTION VALUE="natural_therapies.htm">Natural Therapies</OPTION>');
document.write('<OPTION VALUE="corporate.htm">Conferences</OPTION>');
document.write('</OPTGROUP>');
document.write('<OPTGROUP LABEL="Booking Information">'); 
document.write('<OPTION VALUE="privacy.htm">Privacy Policy</OPTION>'); 
document.write('<OPTION VALUE="vac.htm">Availability list</OPTION>'); 
document.write('<OPTION VALUE="Price_ls.htm">Rates</OPTION>'); 
document.write('<OPTION VALUE="specials.htm">Specials</OPTION>'); 
document.write('<OPTION VALUE="book_inf.htm">Booking Information</OPTION>');    
document.write('<OPTION VALUE="frames_form.htm">Booking Form</OPTION>');     
document.write('<OPTION VALUE="pay_form.htm">On Line Payments</OPTION>'); 
document.write('<OPTION VALUE="email_form.htm">Enquiry Form</OPTION>'); 
document.write('<OPTION VALUE="gift_voucher.htm">Gift Vouchers</OPTION>'); 
document.write('</OPTGROUP>');




document.write('</OPTGROUP>');
document.write('<OPTGROUP LABEL="Meals">'); 
document.write('<OPTION VALUE="meals_order.htm" >Meals</OPTION>'); 
document.write('</OPTGROUP>');


document.write('</OPTGROUP>');
document.write('<OPTGROUP LABEL="Weddings & Elopements">'); 

document.write('<OPTION VALUE="wedd_elope_photos.htm" >Wedding & Elopements</OPTION>'); 
document.write('</OPTGROUP>');






document.write('<OPTGROUP LABEL="Map and Location">'); 
document.write('<OPTION VALUE="aerial.htm" >Aerial Photo</OPTION>'); 
document.write('<OPTION VALUE="cottage_locator.html" >Cottage Locations</OPTION>'); 
document.write('<OPTION VALUE="book_inf.htm" >Booking Information</OPTION>'); 
document.write('<OPTION VALUE="map.htm" >Map</OPTION>'); 
document.write('</OPTGROUP>');



document.write('<OPTGROUP LABEL="Other">'); 
document.write('<OPTION VALUE="links.htm" target="_blank" >General Links</OPTION>'); 
document.write('<OPTION VALUE="awards.htm" >Awards</OPTION>');  
document.write('<OPTION VALUE="link_to_us.htm" >Link to Clarendon</OPTION>'); 

document.write('</OPTGROUP>');


document.write('<OPTION>Other</OPTION>'); 


document.write('</SELECT>'); 
document.write('&nbsp;&nbsp;'); 
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');               
document.write('</form>');
