<!--
// Template for web pages -- image rollover.
//

//
// Roll image and centre text.
//
function rollImage(imageOverText, overImage, outImage, imageHeight, imageWidth) {
  var html = '';
  var imageName = imageOverText.replace(" ","")

  html +=  '<DIV onMouseOver=document.images["' + imageName + '"].src="' + overImage + '" ';
  html +=       'onMouseOut=document.images["' + imageName + '"].src="' + outImage + '"> ';
  html +=       '<IMG src=' + outImage + ' ';
  html +=            'border=0 name=' + imageName + ' height=' + imageHeight + ' width=' + imageWidth + '>';
  html +=   '</DIV>';
  html +=  '<DIV style="bottom:' + imageHeight * 0.57 + ';" class=imageOverlayText>';
  html +=    imageOverText;
  html +=   '</DIV> ';

  document.write(html);
}

-->