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>Buttercups Academy (CPD) Courses</option>');

document.writeln( '<option></option>');

	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/Asthma.nsf/LookupContent/Index.html!OpenDocument">39) Academy for Dispensary Staff - Asthma</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/ManagementModules.nsf/LookupContent/Index.html!OpenDocument">40) Academy for Management</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/MCA-v2-Academy.nsf/LookupContent/Index.html!OpenDocument">41) Academy for Medicine Counter Assistants</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/AcademyForPharmacyTechnicians.nsf/LookupContent/Index.html!OpenDocument">42) Academy for Pharmacy Technicians</option>');
	document.writeln( '<option value="http://www.buttercups.co.uk/Academy/DispensingAcademyHome.nsf/Setup/Media/$File/DispensingAcademyHomePage.html">43) Dispensing Academy Version 1 (Technical Certificate Equivalent)</option>');
	document.writeln( '<option value="http://www.buttercups.co.uk/AcademyV2/DispensingAcademyHome.nsf/Setup/Media/$File/DispensingAcademyHomePage.html">44) Dispensing Academy Version 2 (Technical Certificate Equivalent)</option>');
	document.writeln( '<option value="http://www.buttercups.co.uk/academyv3/dispensing-academy-home.nsf/lookupcontent/index.html!opendocument">45) Dispensing Academy Version 3 (Technical Certificate Equivalent)</option>');	

document.writeln( '<option></option>');
	
document.writeln( '</select>' );
document.writeln( '</form>' );




