<!--
/*zondag 30 oktober 2005 2:09:04*/
function Laad() {tipLinks();mirZa();}
function mirZa() {return;}

function tipLinks(){
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors .length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute("href") && anchor.target == "_blank") {
anchor.title = (anchor.title != "") ? anchor.title+" (Opens in a new window)" : "Opens in a new window";
}
}
}
// -->