document.write("<p>");

function pulldown_menu()
{
// Create a variable url to contain the value of the 
// selected option from the the form named pulldown and variable selectname

var url = document.pulldown.selectname.options[document.pulldown.selectname.selectedIndex].value

// Re-direct the browser to the url value
window.location.href = url 
}


document.write ("<form name='pulldown'><select name='selectname' size='1' style='font-size: 8pt' onChange='pulldown_menu()'>");


document.write ("<option value=''>EOS 50D Review Index</option>");
document.write ("<option value=''></option>");


document.write ("<option value='canon_eos_50D_review_1.html'>Introduction</option>");
document.write ("<option value='canon_eos_50D_review_2.html'>Operation and Controls</option>");

document.write ("<option value='canon_eos_50D_review_3.html'>ISO, Noise and DR</option>");
document.write ("<option value='canon_eos_50D_review_4.html'>Resolution</option>");
document.write ("<option value='canon_eos_50D_review_5.html'>Color Rendition</option>");
document.write ("<option value='canon_eos_50D_review_6.html'>Other Features</option>");
document.write ("<option value='canon_eos_50D_review_7.html'>Conclusion</option>");
document.write ("<option value='eos_50D_specs.html'>Full Specifications</option>");



document.write ("</select></form>");

