<!--
var theImages = new Array()

theImages[0] = '01'
theImages[1] = '02'
theImages[2] = '03'
theImages[3] = '05'
theImages[4] = '06'
//theImages[4] = 'graphics/image02blank.gif'

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<IMG SRC="graphics/ins'+theImages[whichImage]+'d.gif" WIDTH="471" HEIGHT="14" BORDER="0" ALT=""></TD><TD WIDTH="199"><IMG SRC="graphics/instopfill01.gif" WIDTH="199" HEIGHT="14" BORDER="0" ALT=""></TD><TD BACKGROUND="graphics/instopfill02.gif" STYLE="background-repeat:no-repeat;" HEIGHT="14"><IMG SRC="graphics/spacer.gif" WIDTH="1" HEIGHT="14" BORDER="0" ALT=""></TD></TR></TABLE></TD></TR><TR><TD WIDTH="100%"><TABLE WIDTH="100%" HEIGHT="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0"><TR><TD HEIGHT="291" WIDTH="467" VALIGN="top" BGCOLOR="#E8C291"><TABLE WIDTH="467" BORDER="0" CELLSPACING="0" CELLPADDING="0"><TR><TD><IMG SRC="graphics/ins'+theImages[whichImage]+'a.gif" WIDTH="432" HEIGHT="83" BORDER="0" ALT=""></TD><TD><IMG SRC="graphics/ins'+theImages[whichImage]+'b.gif" WIDTH="35" HEIGHT="83" BORDER="0" ALT=""></TD></TR><TR><TD COLSPAN="2"><IMG SRC="graphics/ins'+theImages[whichImage]+'c.gif" WIDTH="467" HEIGHT="61" BORDER="0" ALT="">');
}
//-->
