function go_to(url) {
window.location=url;
}
function rand_link() {
var a;
a = 1+Math.round(Math.random()*12);   // a = random number between 1-12
if (a==1) go_to("http://www.chosentoremember.com/chapt_2.htm");
if (a==2) go_to("http://www.chosentoremember.com/book_excerpts/c2_choice_joy.htm");
if (a==3) go_to("http://www.chosentoremember.com/book_excerpts/c2_ego_blame.htm");
if (a==4) go_to("http://www.chosentoremember.com/book_excerpts/c2_ego_judgment.htm");
if (a==5) go_to("http://www.chosentoremember.com/book_excerpts/c2_ego_separation.htm");
if (a==6) go_to("http://www.chosentoremember.com/book_excerpts/c2_egos_gifts.htm");
if (a==7) go_to("http://www.chosentoremember.com/book_excerpts/c2_physical_manifestation_ego_self.htm");
if (a==8) go_to("http://www.chosentoremember.com/inspirational_quotes/inspirational_stories_ego.htm");
if (a==9) go_to("http://www.chosentoremember.com/inspiring_stories/chapt_2_ego_self.htm");
if (a==10) go_to("http://www.chosentoremember.com/spiritual-answers/feeling-lost-struggling-to-find-god-SV-MI-US.htm");
if (a==11) go_to("http://www.chosentoremember.com/spiritual-answers/illusions-of-the-ego-BR-L-UK.htm");
if (a==12) go_to("http://www.chosentoremember.com/book_excerpts/c2_egos_advice.htm");
}
