function go_to(url) {
window.location=url;
}
function rand_link() {
var a;
a = 1+Math.round(Math.random()*7);   // a = random number between 1-7
if (a==1) go_to("http://www.chosentoremember.com/book_excerpts/c12_suicide.htm");
if (a==2) go_to("http://www.chosentoremember.com/spiritual_development_activities/forgiveness_strategy_making_peace_someone_passed_away.htm");
if (a==3) go_to("http://www.chosentoremember.com/inspirational_quotes/inspirational_stories_compassion.htm");
if (a==4) go_to("http://www.chosentoremember.com/inspirational_quotes/inspirational_stories_death_and_dying.htm");
if (a==5) go_to("http://www.chosentoremember.com/inspirational_quotes/inspirational_stories_challenges.htm");
if (a==6) go_to("http://www.chosentoremember.com/book_excerpts/c7_exchanging_pain_for_peace_meditation.htm");
if (a==7) go_to("http://www.chosentoremember.com/chapt_12.htm");
}
