<!-- JavaScript verbergen voor oude browsers
function isMozilla()
{
return (navigator.appName == "Netscape") && (navigator.appCodeName ==
"Mozilla") && (navigator.appVersion >= "3") &&
(navigator.userAgent.indexOf("MSIE") == -1);
}
 
function floatingText(u, n, x, y)
{
if (isMozilla())
 {
    var infoWnd= window.open(u, n, "width=" + x +
    ",height=" + y);
    infoWnd.focus();  
    }
 else
 {
    window.open(u, "", "width=" + x + ",height=" + y);
    }
}
// Commentaar -->