
function showpoll() { pollresults=window.open('','pollresults','toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,status=no,resizable=1,width=500,height=350'); }

function shownotes() { notes=window.open('notes.html','notes','toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,status=no,resizable=1,width=520,height=350'); }

function showlog()   { notes=window.open('log.html','log','toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,status=no,resizable=1,width=520,height=350'); }

function getRandomImg() {
    imgList = new Array("");
    var randImg = imgList[Math.floor(Math.random() * imgList.length)];
    return randImg;
}

function printRandomImage() {
    var imageList = new Array("sample_whisk.jpg","http://www.toxicbug.com/photography/gallery.php?dir=objects&img=wisk.jpg",
                              "sample_lightglobes.jpg","http://www.toxicbug.com/photography/gallery.php?dir=objects&img=lightglobes.jpg",
                              "sample_creepygirl.jpg","http://www.toxicbug.com/photography/gallery.php?dir=objects&img=creepygirl.jpg",
                              "sample_surfer.jpg","http://www.toxicbug.com/photography/gallery.php?dir=objects&img=surfer.jpg",
                              "sample_cowkettle.jpg","http://www.toxicbug.com/photography/gallery.php?dir=objects&img=cowkettle.jpg",
                              "sample_chaitea.jpg","http://www.toxicbug.com/photography/gallery.php?dir=objects&img=chaitea.jpg",
                              "sample_photographer.jpg","http://www.toxicbug.com/photography/gallery.php?dir=unsorted&img=photographer.jpg",
                              "sample_electricitypaths.jpg","http://www.toxicbug.com/photography/gallery.php?dir=unsorted&img=electricitypaths.jpg",
                              "sample_skyrainbow.jpg","http://www.toxicbug.com/photography/gallery.php?dir=unsorted&img=skyrainbow.jpg",
                              "sample_laughingducks.jpg","http://www.toxicbug.com/photography/gallery.php?dir=plantsanimals&img=laughingducks.jpg",
                              "sample_planetapes.jpg","http://www.toxicbug.com/photography/gallery.php?dir=unsorted&img=planetapes.jpg",
                              "sample_lookout.jpg","http://www.toxicbug.com/photography/gallery.php?dir=plantsanimals&img=squirrel_lookout.jpg",
                              "sample_eating.jpg","http://www.toxicbug.com/photography/gallery.php?dir=plantsanimals&img=squirrel_eating.jpg",
                              "sample_cornfield.jpg","http://www.toxicbug.com/photography/gallery.php?dir=plantsanimals&img=cornfield.jpg",
                              "sample_purpleflower.jpg","http://www.toxicbug.com/photography/gallery.php?dir=plantsanimals&img=purpleflower.jpg",
                              "sample_stop.jpg","http://www.toxicbug.com/photography/gallery.php?dir=night&img=stop.jpg",
                              "sample_bulldozer02.jpg","http://www.toxicbug.com/photography/gallery.php?dir=night&img=bulldozer02.jpg",
                              "sample_self.jpg","http://www.toxicbug.com/photography/gallery.php?dir=unsorted&img=self.jpg",
                              "sample_throwingstar.jpg","http://www.toxicbug.com/photography/gallery.php?dir=objects&img=throwingstar.jpg",
                              "sample_eyeless.jpg","http://www.toxicbug.com/photography/gallery.php?dir=unsorted&img=eyeless.jpg"
                              );
    var randomIndex = Math.floor(Math.random() * (imageList.length / 2)) * 2;
    document.write("<a href=\"", imageList[randomIndex+1], "\" class=\"grayed\"><img src=\"", imageList[randomIndex], "\" width=\"200\" height=\"150\" border=\"0\" name=\"sample_image\"></a><br><br>\n");
}
    
