// Select Menu Script by H.GOTO

function pg(s) {
 t = s.options[s.selectedIndex].value;
 if (t != "-") location.href = t;
}
function w(d, f, m) {
document.writeln('<option value="' + f + '"'
 + ((d == f) ? ' selected>' : '>') + m + '</option>');
}
function page(URL) {
idx = URL.lastIndexOf('\\', URL);
if (idx == -1) {
 idx = URL.lastIndexOf('/', URL);
}
filename = URL.substring(idx+1);
document.writeln('<form name="page"><select onChange="pg(this)">');
w(filename, 'index.html', 'Home');
w(filename, '-', '-----------');
w(filename, 'youtube.html', 'YouTube');
w(filename, 'health.html', 'Health');
w(filename, 'book.html', 'Book');
w(filename, 'choco.html', 'Chocolate');
w(filename, 'tea.html', 'Tea');
w(filename, 'water.html', 'Water');
w(filename, 'vegetable.html', 'Vegetable');
w(filename, 'event.html', 'Event');
document.writeln('</select></form>');
}
