function go_to(url) {
window.location=url;
}
function rand_link() {
var a;
a = 1+Math.round(Math.random()*15);   // a = random number between 1-15
if (a==1) go_to("http://www.chosentoremember.com/book_excerpts/c4_allow_others_fulfill_their_dreams.htm");
if (a==2) go_to("http://www.chosentoremember.com/book_excerpts/c5_my_big_toe.htm");
if (a==3) go_to("http://www.chosentoremember.com/book_excerpts/c6_trusting_god_through_accidents.htm");
if (a==4) go_to("http://www.chosentoremember.com/book_excerpts/c8_youre_always_in_the_right_place_at_the_right_time.htm");
if (a==5) go_to("http://www.chosentoremember.com/inspiring_stories/chapt_5_work_on_self.htm");
if (a==6) go_to("http://www.chosentoremember.com/inspiring_stories/chapt_3_god_self.htm");
if (a==7) go_to("http://www.chosentoremember.com/inspirational_quotes/inspirational_stories_trust.htm");
if (a==8) go_to("http://www.chosentoremember.com/inspirational_quotes/inspirational_stories_worry.htm");
if (a==9) go_to("http://www.chosentoremember.com/inspirational_quotes/inspirational_stories_attitude.htm");
if (a==10) go_to("http://www.chosentoremember.com/book_excerpts/c9_everything_happens_for_your_own_good.htm");
if (a==11) go_to("http://www.chosentoremember.com/book_excerpts/c9_turning_blocks_into_blessings.htm");
if (a==12) go_to("http://www.chosentoremember.com/book_excerpts/c10_bad_things_perception.htm");
if (a==13) go_to("http://www.chosentoremember.com/book_excerpts/c5_faith_trust_moment_is_perfect.htm");
if (a==14) go_to("http://www.chosentoremember.com/book_excerpts/c10_thank_the_road_bumps.htm");
if (a==15) go_to("http://www.chosentoremember.com/book_excerpts/c10_when_bad_things_happen.htm");
}

