

function go_to(url) {
window.location=url;
}
function rand_link() {
var a;
a = 1+Math.round(Math.random()*19);   // a = random number between 1-19
if (a==1) go_to("news.html");
if (a==2) go_to("literature.html");
if (a==3) go_to("QA.html");
if (a==4) go_to("music.html");
if (a==5) go_to("siteinfo.html");
if (a==6) go_to("FAQ.html");
if (a==7) go_to("buttonpage.html");
if (a==8) go_to("artofrx.html");
if (a==9) go_to("jokes.html");
if (a==10) go_to("teachings.html");
if (a==11) go_to("rmailfaq.html");
if (a==12) go_to("poetry.html");
if (a==13) go_to("buttonpage.html");
if (a==14) go_to("relax.html");
if (a==15) go_to("Novel.html");
if (a==16) go_to("comicarchive.html");
if (a==17) go_to("smiley.html");
if (a==18) go_to("feedback.html");
if (a==19) go_to("./comics/comic.gif");
}



