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/c10_buckle_your_childs_safety_seat.htm");
if (a==2) go_to("http://www.chosentoremember.com/book_excerpts/c9_changing_attitudes.htm");
if (a==3) go_to("http://www.chosentoremember.com/spiritual-answers/reinterpreting-hate-fear-criticism-JO-B-UK.htm");
if (a==4) go_to("http://www.chosentoremember.com/spiritual-answers/forgiving-adolescent-child-of-partner.htm");
if (a==5) go_to("http://www.chosentoremember.com/spiritual-answers/challenging-life-god-MB.htm");
if (a==6) go_to("http://www.chosentoremember.com/spiritual-answers/challenge_wife_yells_at_kids.htm");
if (a==7) go_to("http://www.chosentoremember.com/inspiring_stories/chapt_5_work_on_self.htm");
if (a==8) go_to("http://www.chosentoremember.com/inspiring_stories/chapt_2_ego_self.htm");
if (a==9) go_to("http://www.chosentoremember.com/spiritual-answers/helping-develop-peace-clarity-confused-girl-R-C-I.htm");
}

