<!-- Activate Cloaking Device


   today=new Date();
   jran=today.getTime();
   var number=3;
   var random_number=0;
   var image="";

function randomizeNumber()
   {
   ia=9301;
   ic=49297;
   im=233280;
   jran = (jran*ia+ic) % im;
   random_number=Math.ceil( (jran/(im*1.0)) *number);

   // Set variable image equal to appropriate image file name.
   if (random_number==1)
      image="images/home/jtmuseum.jpg";
   if (random_number==2)
      image="images/home/gazebocolor.jpg";
   if (random_number==3)
      image="images/home/municipalbldg.jpg";
   
   }
function reloadPage()
   { window.location="js-rdimg.htm"; }

function about()
   {
   alert("\nThis example demonstrates one method of displaying a randomly chosen image each time a page is loaded.\n\nSimply click on the Reload Page button to  simulate page loading.");
   }

function WinOpen() 
   {
   alert('\nPage will load to full screen.\n\nUse View/Document Source from menu bar to view source.\n\nClose new window to return to this page. ');
   window.open("js-rdimg.htm","DisplayWindow","menubar=yes,scrollbars=yes");
   window.open("js-rdimg.htm","DisplayWindow","menubar=yes,scrollbars=yes");   // double for Macs
   }


// Deactivate Cloaking -->