<!-- Marshall Bowling -->
<!-- Web Site: http://www.marshallbowling.com -->

<!-- This script calculates a random number between the high and low limits -->
<!-- specified in the variables. It will then display the image from the    -->
<!-- array value or randomNum.

<!-- Begin Onload Internet Bumper Sticker 

var images = new Array();
var lowLimit = 0;
var highLimit = 34;

<!--     "..............................................................................." -->
images[0] = "20cash.gif";
images[1] = "comm_64.gif";
images[2] = "elect.gif";
images[3] = "klingon_sec.gif";
images[4] = "no_loud.gif";
images[5] = "official.gif";
images[6] = "powr_hamsters.gif";
images[7] = "sars_free.gif";
images[8] = "unpaid_child.gif";
images[9] = "abwot.gif";
images[10] = "dare.gif";
images[11] = "flash_photog.gif";
images[12] = "lookbest.gif";
images[13] = "nosmoke.gif";
images[14] = "other_site_crap.gif";
images[15] = "restroom.gif";
images[16] = "taunt_wbmstr.gif";
images[17] = "voice_activated.gif";
images[18] = "web_shower.gif";
images[19] = "animals_web.gif";
images[20] = "dishwasher.gif";
images[21] = "html_incomp.gif";
images[22] = "nat_rgstr.gif";
images[23] = "notbview.gif";
images[24] = "outdoor.gif";
images[25] = "sanitized.gif";
images[26] = "trees.gif";
images[27] = "web_parties.gif";
images[28] = "website_glam.gif";
images[29] = "clckonly.gif";
images[30] = "dolphin.gif";
images[31] = "inspector.gif";
images[32] = "no_litter_web.gif";
images[33] = "ny_cell.gif";
images[34] = "patroled.gif";
<!--     "..............................................................................." -->

function chooseImage(){
    randomNum = Math.floor (Math.random() * highLimit) + lowLimit
    imageValue = images[randomNum]
}

function writeImage() { 
    document.write('<img src="http://www.marshallbowling.com/Bumper_stickers/'+[imageValue]+'">');
}

chooseImage();
writeImage();
 
// -- End Onload Internet Bumper Sticker -->
