// JavaScript Document

function menu_goto( menuform )
{
  var baseurl = '' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" style="font:normal 13px/1.3 Arial, Helvetica, sans-serif; color:#333;" onchange="menu_goto(this.form)">' );
document.writeln( '<option>QUICK LINKS</option>' );
document.writeln( '<option value="http://www.opseu330.com/forms/forms.html">Important forms</option>' );
document.writeln( '<option value="http://www.opseu330.com/misc/paystructure.html">Pay Structure</option>' );
document.writeln( '<option value="http://www.opseu330.com/misc/links.html">Useful links</option>' );
document.writeln( '<option value="http://www.opseu330.com/misc/bursary.html">Bursary application</option>' );
document.writeln( '<option value="http://www.opseu330.com/misc/faq.html">Frequently asked questions</option>' );
document.writeln( '<option value="http://www.opseu330.com/misc/contact.html">Get in touch with us</option>' );
document.writeln( '<option value="http://www.opseu330.com/misc/directions.html">Where to find us</option>' );

document.writeln( '</select>' );
document.writeln( '</form>' );