This script is currently set to run when the page loads:
<script language="JavaScript">
j=parseInt(Math.random()*ranobjList.length);
j=(isNaN(j))?0:j;
document.write(unescape(ranobjList[j]));
</script>
Is there a way I can make it execute only when a button is clicked, instead of automatically loading?