function pagejump(to_url) {
	if (to_url != "") {
         window.location=to_url
         }
}
document.write('<form>');
document.write('<select name="whereto" onchange="pagejump(this.options[this.selectedIndex].value)">');
document.write('<option value="#" selected>Select a subject</option>');
document.write('<option value="http://www.mhhe.com/biosci/ap/mediacentral/ap.mhtml">Anatomy and Physiology</option>');
document.write('<option value="http://www.mhhe.com/biosci/ap/mediacentral/envirosci.mhtml">Enviromental Science</option>');
document.write('<option value="http://www.mhhe.com/biosci/ap/mediacentral/micro.mhtml">Microbiology</option>');
document.write('<option value="http://www.mhhe.com/biosci/ap/mediacentral/genbio.mhtml">General Biology</option>');
document.write('<option value="http://www.mhhe.com/biosci/ap/mediacentral/genetics.mhtml">Genetics</option>');
document.write('<option value="http://www.mhhe.com/biosci/ap/mediacentral/chem.mhtml">Chemistry</option>');
document.write('<option value="http://www.mhhe.com/biosci/ap/mediacentral/phys.mhtml">Physics</option>');
document.write('<option value="http://www.mhhe.com/biosci/ap/mediacentral/devmath.mhtml">Developmental Math</option>');
document.write('<option value="http://www.mhhe.com/biosci/ap/mediacentral/mathworld.mhtml">Mathmatics in Our World</option>');
document.write('<option value="http://www.mhhe.com/biosci/ap/mediacentral/algprecalc.mhtml">Algebra / PreCalculus</option>');
document.write('<option value="http://www.mhhe.com/biosci/ap/mediacentral/nutrition.mhtml">Nutrition</option>');
document.write('</select>');
document.write('</form>');
