
rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() {
         rnd.seed = (rnd.seed*9301+49297) % 233280;
         return rnd.seed/(233280.0);
};

function rand(number) {
         return Math.ceil(rnd()*number);
};

<!--

// Script by Evan Nemerson
//
// E-mail:      evangnem@icqmail.com
// Web Site:    http://SitesByEvan.8m.com/
//
// Here's where you can edit the script. Replace the number inside
// of the parentheses after "rand" with how many quotes you want
// the script to choose from. Add or delete if statements as
// needed. If you have any questions, contact me.
//
//
//
// "Random Quote" Script modified by Emeth Hesed Smith <emeth@berith.com> to generate random links.

var number=rand(8)-1
var link="link"
if (number == 0) {link="<a href='essays/pt/' >Paradox and Truth: Rethinking Van Til on the TRINITY by Comparing Van Til, Plantinga, and Kuyper</a>"; };
if (number == 1) {link="<a href='essays/tcv/' >Trinity and Covenant: The Christian Worldview</a>"; };
if (number == 2) {link="<a href='essays/bap/' >Studies on Baptism</a>"; };
if (number == 3) {link="<a href='essays/zen/' >Zen: A Trinitarian Critique</a>"; };
if (number == 4) {link="<a href='sermons/lp/' >Sermons on the Lord's Prayer</a>"; };
if (number == 5) {link="<a href='hsres/shak/shak01.html' >Why Shakespeare for Christian Students?</a>"; };
if (number == 6) {link="<a href='hsres/shak/shak02.html' >How to Study Shakespeare</a>"; };
if (number == 7) {link="<a href='essays/bib/' >Introduction to the Bible: The Covenantal Structure of the Bible</a>"; };

// -->
