function go_to(url) {
window.location=url;
}
function rand_link() {
var a;
a = 1+Math.round(Math.random()*13);   // a = random number between 1-13
if (a==1) go_to("http://www.chosentoremember.com/chapt_1.htm");
if (a==2) go_to("http://www.chosentoremember.com/book_excerpts/c1_being_born_into_dream.htm");
if (a==3) go_to("http://www.chosentoremember.com/book_excerpts/c1_dreamer_and_dream.htm");
if (a==4) go_to("http://www.chosentoremember.com/book_excerpts/c1_forgiving_dreamer.htm");
if (a==5) go_to("http://www.chosentoremember.com/book_excerpts/c1_inv1_list.htm");
if (a==6) go_to("http://www.chosentoremember.com/book_excerpts/c1_inv2_act_awake.htm");
if (a==7) go_to("http://www.chosentoremember.com/book_excerpts/c1_judging_the_dreamer.htm");
if (a==8) go_to("http://www.chosentoremember.com/book_excerpts/c1_knowing_your_power.htm");
if (a==9) go_to("http://www.chosentoremember.com/book_excerpts/c1_self_image_transformation.htm");
if (a==10) go_to("http://www.chosentoremember.com/book_excerpts/c1_unconscious_habitual_belief_ego.htm");
if (a==11) go_to("http://www.chosentoremember.com/inspirational_quotes/inspirational_stories_illusions.htm");
if (a==12) go_to("http://www.chosentoremember.com/inspiring_stories/chapt_1_dream.htm");
if (a==13) go_to("http://www.chosentoremember.com/book_excerpts/c1_dream_of_separation.htm");
}
