<!-- 
// Hide script from old browsers
function go()
{
	if (document.selecter1.select1.options
	[document.selecter1.select1.selectedIndex].value != "none") {
	location = document.selecter1.select1.options
	[document.selecter1.select1.selectedIndex].value
	}
}
document.write('<form name="selecter1">');
document.write('<select name="select1">');
document.write('<option value="none">Select Topic                    ');
document.write('<option value="none">----------------------------');
document.write('<option value="#top">Top of Page');
document.write('<option value="#early">Early Life in England');
document.write('<option value="#migrate">Migration to Australia');
document.write('<option value="#travel">Travels in Australia');
document.write('<option value="#blue">Blue Mountains');
document.write('<option value="#farm">Self-Sufficiency');
document.write('<option value="#sweden">Migration to Sweden');
document.write('</select>');
document.write('<input type="button" value="Go" onClick="go()">');
document.write('</form>');
// -->
