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/spiritual_development_activities/peace_of_mind_strategy_stopping_negative_thoughts.htm");
if (a==2) go_to("http://www.chosentoremember.com/inspirational_quotes/inspirational_stories_challenges.htm");
if (a==3) go_to("http://www.chosentoremember.com/inspirational_quotes/inspirational_stories_attitude.htm");
if (a==4) go_to("http://www.chosentoremember.com/book_excerpts/c2_choice_joy.htm");
if (a==5) go_to("http://www.chosentoremember.com/book_excerpts/c3_my_mind_powerful.htm");
if (a==6) go_to("http://www.chosentoremember.com/spiritual-answers/peace-of-mind-while-facing-illness-ANON.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/book_excerpts/c8_youre_always_in_the_right_place_at_the_right_time.htm");
}
