<!--
function newWindow(file, val_1, val_2)
  {
  Fenster = window.open(file, "window", "width="+val_1+", height="+val_2+", scrollbars=yes, toolbar=no, menubar=no, location=no, directories=no, status=no");
  Fenster.focus();
  }

function addFavorit()
  {
  favorit_url=self.location.href;
  favorit_title="IRONMAN-Ergebnis-Datenbank - Alles über den IM Hawaii";     // allgemein: document.title
  if (document.all)
    {
    window.external.AddFavorite(favorit_url, favorit_title)
    }
  else alert("Drücken Sie 'STRG' + 'D' um diese Webseite Ihren Favoriten hinzuzufügen!");
  }

var allElements = document.getElementsByTagName('tr');
for (var i = 0; i < allElements.length; i++) {
  allElements[i].onmouseover = highlight;
  allElements[i].onmouseout  = normal;
  }
function highlight() {
  this.style.background = '#FFCCCC';
  }
function normal() {
  this.style.background = '#FFFFFF';
  }

function user_changebackground(obj, color)
{
	obj.style.backgroundColor = color;
}
//-->