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" onchange="menu_goto(this.form)">');
document.writeln( '<option>Other PeTS Courses</option>');

document.writeln( '<option></option>');

document.writeln( '<option value="http://www.buttercups.co.uk/Website/customer-service.nsf/lookupcontent/index.html!OpenDocument">28) Customer Service for Healthcare Professionals</option>');
document.writeln( '<option value="http://www.buttercups.co.uk/Website/VeterinaryDA.nsf/LookupContent/Index.html!OpenDocument">46) Dispensing Assistant Course for Veterinary Staff (enrolments prior to 2011)</option>');
document.writeln( '<option value="http://www.buttercups.co.uk/Website/KeySkillsLevel1.nsf/LookupContent/Index.html!OpenDocument">47) Key Skills Level 1</option>');
document.writeln( '<option value="http://www.buttercups.co.uk/Website/KeySkillsLevel2.nsf/LookupContent/Index.html!OpenDocument">48) Key Skills Level 2</option>');
document.writeln( '<option value="http://www.buttercups.co.uk/Website/law-and-ethics-for-pharmacists-technicians.nsf/lookupcontent/index.html!opendocument">22) Law and Ethics for Pharmacists and Technicians</option>');
document.writeln( '<option value="http://www.buttercups.co.uk/Website/NonButtercupsACT.nsf/LookupContent/Index.html!OpenDocument">50) Re-accreditation of Non-Buttercups Qualified ACTs</option>');
document.writeln( '<option value="http://www.buttercups.co.uk/Website/want-to-work-in-pharmacy.nsf/lookupcontent/index.html!opendocument">52) So you Want to Work in a Pharmacy</option>');
document.writeln( '<option value="http://www.buttercups.co.uk/Website/teamleading.nsf/LookupContent/index.html!OpenDocument">29) Team Leading Course for Healthcare Professionals</option>');
document.writeln( '<option value="http://www.buttercups.co.uk/Website/veterinary-dac.nsf/lookupcontent/index.html!opendocument">60) Veterinary Dispensing Assistant Course (enrolments in 2011)</option>');
document.writeln( '<option value="http://www.buttercups.co.uk/website/health-improvement.nsf/lookupcontent/index.html!opendocument">72) Level 2 Award in Understanding Health Improvement</option>');
document.writeln( '<option value="http://www.buttercups.co.uk/Website/health-improvement-invigilators.nsf/lookupcontent/index.html!opendocument">72) Level 2 Award in Understanding Health Improvement (Invigilator\'s Website)</option>');

document.writeln( '<option></option>');

document.writeln( '</select>' );
document.writeln( '</form>' );




