<!-- Begin

    // Trivial and pointless little JavaScript to interpolate random 
    // strings into a page.
    // URL: http://www.scripts.com/viewscript/random-strings/11428/
    
    var sc = 11;                    // Number of alternative strings
    var s = new Array(sc);          // Array to hold alternative strings
    
    // String definitions. There should be exactly 'sc' strings, numbered
    // from 0 to (sc - 1). You can embed markup in the strings, provided
    // you're careful to escape any double quotes. Note that if you fail
    // to define enough strings, you'll get 'undefined' appearing in place
    // of the string, or possibly even a security violation, which tends
    // to be unaesthetic.
    
    s[0] = "Our strategy is to settle the facts. Who is the baby and what does abortion do to him or her.&nbsp;&mdash;&nbsp;Walter B. Hoye II";
    s[1] = "It is not enough to preach the cost of discipleship. Today, we must pay the cost of discipleship to meet the needs of ministry.&nbsp;&mdash;&nbsp;Walter B. Hoye II";
    s[2] = "The extent to which you have the ability to take action is the extent to which you have a moral responsibility to take action. &nbsp;&mdash;&nbsp;Walter B. Hoye II";
    s[3] = "We must value our relationship with heaven more than our relationship with the world.&nbsp;&mdash;&nbsp;Walter B. Hoye II";
    s[4] = "The extent to which you are friends with the world is the extent to which you have been compromised by the world.&nbsp;&mdash;&nbsp;Walter B. Hoye II";
    s[5] = "To live for Christ we must be willing to give up our 'right' to ourselves.&nbsp;&mdash;&nbsp;Walter B. Hoye II";
    s[6] = "The extent to which you are willing to suffer for Christ's sake is the extent to which you are willing to serve God.&nbsp;&mdash;&nbsp;Walter B. Hoye II";
    s[7] = "The good people quit being good before the bad people quit being bad.&nbsp;&mdash;&nbsp;Walter B. Hoye II";
    s[8] = "The risks facing Christians today mirror both the risks facing the child in the womb of a mother in the grips of an unplanned pregnancy and the life or death stakes of an unrepentant nation facing the judgment of a Holy God.  &nbsp;&mdash;&nbsp;Walter B. Hoye II";
    s[9] = "It is not a matter of whether there will or will not be a price.  Nor is it a question of how high the price is or will be.  Today, when it comes to taking a public stand for God, it will always be a matter of one's willingness to pay the price.&nbsp;&mdash;&nbsp;Walter B. Hoye II";
    s[10] = "Abortion is the defining issue of our time, in the same way that slavery was in the 19th century and segregation was in the 20th century.&nbsp;&mdash;&nbsp;Walter B. Hoye II";
    
    // pickRandom - Return a random number in a given range. If we're running
    // on an older browser that doesn't support 'Math.random()', we can fake
    // it by using the current time. This isn't ideal for mission-critical
    // security applications, but it's fine here. Note that we divide the
    // current time by 1000 to get rid of the milliseconds which Navigator
    // doesn't seem to take into account.
    
    function pickRandom(range) {
        if (Math.random)
            return Math.round(Math.random() * (range-1));
        else {
            var now = new Date();
            return (now.getTime() / 1000) % range;
        }
    }
    
    // Write the string into the document. The "<BLOCKQUOTE>" tags are just 
    // for formatting; you can put as much or as little HTML around these 
    // strings as you like.
    
    var choice = pickRandom(sc);
    document.writeln("<table width=450 align=center><tr><td>" +
                     "<blockquote><strong><span style='font-family:tahoma; font-size: 9px; color:#000044; line-height:10px; text-align:left;'>" + s[choice] + 
                     "<br></span><" + "/strong><" + "/blockquote>" +
                     "<" + "/td><" + "/tr><" + "/table>");

//  End -->
