		function go() {
			if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value != "none") {
				location = document.selecter.select1.options[document.selecter.select1.selectedIndex].value
			}
		}
		document.write('<form name="selecter"><select name="select1" onChange="go()">');
		document.write('<option value="/possibilities/index.html">Topics');
		document.write('<option value=none>------------------------');
		document.write('<option value="/possibilities/athome/index.html">Dawn');
		document.write('<option value="/possibilities/babynews/index.html">Meridian');		
		document.write('<option value="mailto:dawnstiller@quip.net">e-mail me');
		document.write('</select>');
		document.write('</form>');
