function go2(sel) {
  ix = sel.selectedIndex;
  if (sel.options[ix].value != "none") {
	loc = sel.options[ix].value;
//	alert(loc);
	document.location = loc;
	return false;
  }
  return false;
}
document.writeln('<form action=" ">');
document.writeln('<select name="select1" onChange="return go2(this)">');
document.writeln('<option value="none"> --- Please Select item of interest -->');
document.writeln('<option value="none">------------------------------');
document.writeln('<option value=".\/about.html">About About AussieCops');
document.writeln('<option value=".\/info.html">Information - What we offer');
document.writeln('<option value=".\/apply.html">Apply for Membership');
document.writeln('<option value=".\/australia.html">About Australia');
document.writeln('<option value=".\/internat.html">International Police');
document.writeln('<option value=".\/hobby.html">Police Hobby Section');
document.writeln('<option value=".\/nsw.html">NSW - State Info on New South Wales');
document.writeln('<option value=".\/act.html">ACT - Australian Capital Territory');
document.writeln('<option value=".\/qld.html">Qld - State info on Queensland');
document.writeln('<option value=".\/vic.html">VIC - State Info on Victoria');
document.writeln('<option value=".\/sa.html">SA - State info on South Australia');
document.writeln('<option value=".\/wa.html">WA - State info on Western Australia');
document.writeln('<option value=".\/nt.html">NT - State info on Northern Territory');
document.writeln('<option value=".\/tas.html">TAS - State info on Tasmania');

document.writeln('<\/select>');
document.writeln('<\/form>');
