<!--This Function was added to facilitate the display of the ALT Tag-->
function alt2title() { 
  var imgs=document.getElementsByTagName('img'); 
  for (var i=0; i<imgs.length; i++) { 
    if(imgs[i].title==''){ 
      imgs[i].title=imgs[i].alt; 
    } 
  } 
} 
<!-->
