
<!--

var lrcnt = 69
var ccnt = 29
var lnumb = "";
var cnumb = "";
var rnumb = "";
var lowincr = "";
var highincr = "";
var lowmod = "";
var highmod = "";

function threeRand()
{
lnumb = Math.floor(Math.random()*lrcnt)+1;
cnumb = Math.floor(Math.random()*ccnt)+1;
rnumb = Math.floor(Math.random()*lrcnt)+1;


if (lnumb == rnumb){
lowincr = rnumb-1;
highincr = lrcnt-rnumb;
if (highincr > lowincr){
lowmod = rnumb+Math.floor(Math.random()*highincr)+1;
rnumb = lowmod;
} else
{
highmod = rnumb-Math.floor(Math.random()*lowincr)+1;
rnumb = highmod;
}
}

{
document.write("<IMG SRC=\"lrimages/"+lnumb+".jpg\" WIDTH=94 HEIGHT=82 HSPACE=2 BORDER=0>");
document.write("&nbsp;&nbsp; <br>");
document.write("<IMG SRC=\"cimages/"+cnumb+".jpg\" WIDTH=94 HEIGHT=82 HSPACE=2 BORDER=0>");
document.write("&nbsp;&nbsp; <br>");
document.write("<IMG SRC=\"lrimages/"+rnumb+".jpg\" WIDTH=94 HEIGHT=82 HSPACE=2 BORDER=0>");
}
}
// -->
