
<!-- see if image name is found in document title
function checkTitle(titleWord) {
  for (var i = 0; i < document.title.length - 1; i++) {
  var yes = document.title.indexOf(titleWord, 53 );
  if ((yes != -1)) {    // word is found in page title
  break    // we have a match
                 }
  }
return yes;
}
//-->
