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>Dispensing Doctors Courses</option>');

document.writeln( '<option></option>');

document.writeln( '<optgroup label = "Courses for Dispensing Assistants in Dispensing Doctors Practices">');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/Accuracychecking.nsf/LookupContent/Index.html!OpenDocument">06) Accuracy Checking Course for Dispensing Assistants</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/FacilitatorsSection.nsf/LookupContent/Index.html!OpenDocument">07) Accuracy Checking Course for Dispensing Assistants - Facilitator\'s Version</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/MultiplesAccuracyChecking.nsf/LookupContent/Index.html!OpenDocument">08) Accuracy Checking Course for Dispensers (Multiples)</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/FacilitatorsMultiplesSection.nsf/LookupContent/Index.html!OpenDocument">09) Accuracy Checking Course for Dispensers (Multiples) - Facilitator\'s Version</option>');
	document.writeln( '<option value="http://www.buttercups.co.uk/Website/btec-l2-dd.nsf/lookupcontent/index.html">10) BTEC Level 2 Dispensing Doctor\s Course (2011)</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/BTEC.nsf/LookupContent/Index.html!OpenDocument">21) BTEC Level 3 National Diploma in Pharmaceutical Science</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/Level-2-Logbook.nsf/LookupContent/Index.html!OpenDocument">15) Level 2 Certificate in Pharmacy Service Skills (NVQ) (QCF)</option>');	
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/Level2DispensingDoctors.nsf/LookupContent/Index.html!OpenDocument">31) Level 2 Dispensing Doctor\'s Course (enrolments prior to 18th Feb 2011)</option>');
	document.writeln( '<option value="http://www.buttercups.co.uk/Website/l2-dd.nsf/lookupcontent/index.html!opendocument">32) Level 2 Dispensing Doctor\s Course (2011)</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/Level-3-Logbook.nsf/LookupContent/Index.html!OpenDocument">23) Level 3 Diploma in Pharmacy Service Skills (NVQ) (QCF)</option>');	
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/level-3-tc-in-pharmaceutical-science.nsf/LookupContent/Index.html!OpenDocument">27) Level 3 Technical Certificate in Pharmaceutical Science</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/NVQ2DispensingDoctors.nsf/LookupContent/Index.html!OpenDocument">33) NVQ 2 in Pharmacy Services for Dispensing Doctors</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/SupportNVQ3.nsf/LookupContent/Index.html!OpenDocument">24) NVQ 3 Pharmacy Services Evidence Collection</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/TechnicalCertificate.nsf/LookupContent/Index.html!OpenDocument">25) Technical Certificate Version 1</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/TechnicalCertificateVersion2.nsf/LookupContent/Index.html!OpenDocument">26) Technical Certificate Version 2</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( '<optgroup label = "Courses for Pharmacy Technicians">');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/AccreditedTechnician.nsf/LookupContent/Index.html!OpenDocument">18) Accredited Checking Technician Course</option>');
	document.writeln( '<option value="http://www.Buttercups.co.uk/Website/FacilitatorsACT.nsf/LookupContent/Index.html!OpenDocument">19) Accredited Checking Technician Course - Facilitator\'s Version </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( '<optgroup label = "Courses for Healthcare Professionals">');
	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/teamleading.nsf/LookupContent/index.html!OpenDocument">29) Team Leading for Healthcare Professionals</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>' );




