function go_to(url) {
window.location=url;
}
function rand_link() {
var a;
a = 1+Math.round(Math.random()*9);   // a = random number between 1-9
if (a==1) go_to("http://www.chosentoremember.com/book_excerpts/c1_judging_the_dreamer.htm");
if (a==2) go_to("http://www.chosentoremember.com/book_excerpts/c4_make_a_difference.htm");
if (a==3) go_to("http://www.chosentoremember.com/book_excerpts/c4_service.htm");
if (a==4) go_to("http://www.chosentoremember.com/book_excerpts/c5_action_act_unconditional_love.htm");
if (a==5) go_to("http://www.chosentoremember.com/book_excerpts/c7_forgiving_parents_and_family_members.htm");
if (a==6) go_to("http://www.chosentoremember.com/inspiring_stories/chapt_4_fulfilling_life.htm");
if (a==7) go_to("http://www.chosentoremember.com/inspirational_quotes/inspirational_stories_making_the_world_better_place.htm");
if (a==8) go_to("http://www.chosentoremember.com/inspirational_quotes/inspirational_stories_compassion.htm");
if (a==9) go_to("http://www.chosentoremember.com/book_excerpts/c4_one_at_a_time.htm");
}
