// JavaScript Document
        function gotoPage (form) {
        if (form.way.selectedIndex == 0)
        parent.location="index.htm";
        if (form.way.selectedIndex == 1)
        parent.location="howtoget.htm";
        if (form.way.selectedIndex == 2)
        parent.location="tours.htm";
        if (form.way.selectedIndex == 3)
        parent.location="links.htm";
        if (form.way.selectedIndex == 4)
        parent.location="reservation.htm";
        if (form.way.selectedIndex == 5)
        parent.location="thingsto.htm";
        if (form.way.selectedIndex == 6)
        parent.location="general_enquiry.htm";
        if (form.way.selectedIndex == 7)
        parent.location="prices.shtml";
        if (form.way.selectedIndex == 8)
        parent.location="facilities.htm";
		if (form.way.selectedIndex == 9)
		parent.location="f_a_q.htm";
          }

   function writeform(form) {
        document.write('<form name="WebNavigator">');
        document.write('<select name="way" onChange="gotoPage(form)">');
		document.write('<option>Shiralee home');
		document.write('<option>How to get there');
		document.write('<option>Tours');
		document.write('<option>Links');
		document.write('<option>Make a booking');
		document.write('<option>Nightlife');
		document.write('<option>Send an Email');
		document.write('<option>Prices');
		document.write('<option>Facilities');
		document.write('<option>F.A.Q.');
        document.write('</select>');
        document.write('</form>');
   }
        // End hide -->
 