// JavaScript Document
function SetTip(tiptext) {
  Tip(tiptext);
}
function AddTips() {
  var images = document.getElementsByTagName("img");
  for (var i = 0; i < images.length; i++) {
    tiptext = images[i].getAttribute("alt");
    if ( tiptext != "" ) {
			images[i].onmouseover = new Function('SetTip("'+tiptext+'")');
			images[i].onmouseout=function() { UnTip(); }
    } 
  }
}
