function underline (){
var kwords = new Array();
kwords[0] = {kw:"Therapeut[a-z]{2}",lnk:"http://wltipps.drs24.com/radbioinfo",txt:"<FONT face=Tahoma,Verdana,Arial,Helvetica size=2><B>Sind Sie Behandler...</b><br>...und interessiert an feinstofflicher Thematik?<BR>Dann gibt es hier eine w&ouml;chentliche Fachinformation <B>und ein E-Book gratis</b><BR></font>",ins:"Privatverlag WL"};
kwords[1] = {kw:"Radionik",lnk:"http://wltipps.drs24.com/radbioinfo",txt:"<FONT face=Tahoma,Verdana,Arial,Helvetica size=2><B>Sind Sie Behandler...</b><br>...und interessiert an feinstofflicher Thematik?<BR>Dann gibt es hier eine w&ouml;chentliche Fachinformation <B>und ein E-Book gratis</b><BR></font>",ins:"Privatverlag WL"};
kwords[2] = {kw:"Bioresonanz",lnk:"http://wltipps.drs24.com/radbioinfo",txt:"<FONT face=Tahoma,Verdana,Arial,Helvetica size=2><B>Sind Sie Behandler...</b><br>...und interessiert an feinstofflicher Thematik?<BR>Dann gibt es hier eine w&ouml;chentliche Fachinformation <B>und ein E-Book gratis</b><BR></font>",ins:"Privatverlag WL"};
kwords[3] = {kw:"homöopathisch[a-z]{2}",lnk:"http://wltipps.drs24.com/radbio-rp",txt:"<FONT face=Tahoma,Verdana,Arial,Helvetica size=2><B>Elektronische Hom&ouml;opathie - was ist das??</b><br><br>Wenn Sie Alternativ-Behandler und *modern veranlagt* sind, interessiert Sie das sicherlich!<BR></font>",ins:"Privatverlag WL"};
kwords[4] = {kw:"D-Methode",lnk:"http://wltipps.drs24.com/d-methode",txt:"<FONT face=Tahoma,Verdana,Arial,Helvetica size=2><B>Elektronische Diagnose-Methode in 10 Tagen GRATIS??</b><br><br>Wenn Sie eine EAP-Messmethode lernen möchten, klicken sie hier!<BR>Online-Kurs D-Methode in 10 Tagen</font>",ins:"Privatverlag WL"};


var datenfeld = document.getElementsByTagName("P");
//var datenfeld = document.getElementById('main').getElementsByTagName("p"); //nur im Bereich mir der id "main" suchen.
var sightlink = "/";

for(var i = 0; i < datenfeld.length; i++){
for(var s = 0; s < kwords.length; s++){
//var pattern = eval("/" + kwords[s]["kw"] + "/ig");
var pattern = eval("/" + kwords[s]["kw"] + "/g");
var originText = datenfeld[i].innerHTML;
datenfeld[i].innerHTML = originText.replace(pattern, "<a href='" + sightlink + "' onfocus=\"this.blur()\" class=\"hotspot\" onmouseover=\"tooltip.show('" + kwords[s]["txt"] + "<BR><small><small>(externe Empfehlung von " + kwords[s]["ins"] + ")</small></small>');\"  onClick=\"window.open('" + kwords[s]["lnk"] + "');return false;\"     onmouseout=\"tooltip.hide();\" style='text-decoration:underline; color:#3F7FFF; font-weight:bold; border-bottom:dotted 2px; border-bottom-color:#FF7F3F; cursor:pointer;' target=\"_blank\" >$&<\/a>");
}
}
}


underline ();
