<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var core = 0;

function StringArray(n) 
{
  this.length = n;
  for (var i =1; i <= n; i++) 
  {
    this[i] = ' ';
  }
}

image = new StringArray(4);
image[0] = 'CRW_2706A.jpg';
image[1] = 'CRW_2695A.jpg';
image[2] = 'CRW_2718A.jpg';
image[3] = 'CRW_2731A.jpg';

function ranimage() 
{
   core = Math.floor(Math.random() * image.length);
   return(image[core])
}

document.write('<img  border="0"  src="img/' + ranimage() + '" align="center" width="800" height="175">')

//-->
