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/chapt_8.htm");
if (a==2) go_to("http://www.chosentoremember.com/book_excerpts/c8_envy_keeps_you_from_living_in_the_moment.htm");
if (a==3) go_to("http://www.chosentoremember.com/book_excerpts/c8_friend_stranger.htm");
if (a==4) go_to("http://www.chosentoremember.com/book_excerpts/c8_how_your_thoughts_affect_moment.htm");
if (a==5) go_to("http://www.chosentoremember.com/book_excerpts/c8_living_in_the_now_peace_road.htm");
if (a==6) go_to("http://www.chosentoremember.com/book_excerpts/c8_youre_always_in_the_right_place_at_the_right_time.htm");
if (a==7) go_to("http://www.chosentoremember.com/inspirational_quotes/inspirational_stories_being_in_the_now.htm");
if (a==8) go_to("http://www.chosentoremember.com/inspiring_stories/chapt_8_Being_in_the_Now.htm");
if (a==9) go_to("http://www.chosentoremember.com/spiritual_development_activities/strategy_peace_in_moment.htm");
}
