/*
function rndno() {
var rando = 0
while(rando<1 || rando> max || isNaN(rando)) {
rando = parseInt(Math.random()*(max+1))
}
if (rando==2) {rando=107}
if (rando==4) {rando=55}
if (rando==5) {rando=109}
if (rando==6) {rando=111}
return rando
}

function backup() {
var backup = history.back(-2)
}

//This script grabs random buttons, a selected picture, and then sends them to a table in a given frame to view
var max = 6
finda = rndno()
findbd = "images/sponsors/" + finda + ".jpg"
bdline =  "direct/messages/" + finda + ".html"
bdcnt = "?df=" + finda + ".dat"
var bd = findbd
var bdlink = bdline
var bdcount = bdcnt

document.write('<div style="visibility:hidden;"><a href="'+bdlink+'"><img src="' + bd + '" ></a></div>');

*/


