// JavaScript Document

<!-- hide script from old browsers

    var ic = 21;     // Number of alternative images
    var tt = new Array(ic);  // Array to hold filenames
tt[0] = "marchoftime";
tt[1] = "sammykaye";
tt[2] = "marchoftime";
tt[3] = "nationalbarndance";
tt[4] = "fredallen";
tt[5] = "eddiecantor";
tt[6] = "vincentprice";
tt[7] = "all";
tt[8] = "patodaniel";
tt[8] = "gunsmoke";
tt[9] = "nightwatch";
tt[10] = "box13";
tt[11] = "whistler";
tt[12] = "jackwebb";
tt[13] = "dragnet";
tt[14] = "taxtime";
tt[15] = "nightbeat";
tt[16] = "bostonblackie";
tt[17] = "johnnydollar";
tt[18] = "index";
tt[19] = "today";
tt[20] = "christmas";

function pickRandom(range) {
if (Math.random)
return Math.round(Math.random() * (range-1));
else {
var now = new Date();
return (now.getTime() / 1000) % range;
}
}
var choice = pickRandom(ic);


document.writeln('<A HREF="http://www.otrcat.com/'+tt[choice]+'.htm#' + location.href +'"><IMG SRC="http://www.otrcat.com/a/'+tt[choice]+'.gif" WIDTH=468 HEIGHT=60 HSPACE=5 BORDER=0><'+'/A>');

// end hiding script from old browsers -->