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>South London College Courses</option>');

document.writeln( '<option></option>');

document.writeln( '<option value="http://www.Buttercups.co.uk/Website/SLC-NVQ-2-DA.nsf/LookupContent/Index.html!OpenDocument">53) South London College NVQ 2 Dispensing Assistant Course</option>');
document.writeln( '<option value="http://www.Buttercups.co.uk/Website/SouthLondonCollegeNVQ3EvidenceCollection.nsf/LookupContent/Index.html!OpenDocument">54) South London College NVQ 3 Pharmacy Services Evidence Collection</option>');
document.writeln( '<option value="http://www.Buttercups.co.uk/Website/SouthLondonCollegeTechCert.nsf/LookupContent/Index.html!OpenDocument">55) South London College Technical Certificate</option>');
document.writeln( '<option value="http://www.buttercups.co.uk/Website/slc-level-3-pharmaceutical-science.nsf/lookupcontent/index.html!opendocument">61) South London College Level 3 Technical Certificate in Pharmaceutical Science</option>');
document.writeln( '<option value="http://www.buttercups.co.uk/Website/slc-level-3-logbook.nsf/lookupcontent/index.html!opendocument">62) South London College Level 3 Diploma in Pharmacy Service Skills</option>');

document.writeln( '<option></option>');

document.writeln( '</select>' );
document.writeln( '</form>' );




