<!--
function safeActiveX() {
 try {
 ua = new ActiveXObject("Shell.UIHelper");
 } catch (e) {
    document.write("<font color='#FF0000'>deaktiviert</font>")
    return
 } 
 document.write("<font color='#009900'>aktiviert</font>")
}

function unsafeActiveX() {
 try {
 ua = new ActiveXObject("Scripting.FileSystemObject");
 } catch (e) {
    document.write("<font color='#FF0000'>deaktiviert</font>")
    return
 } 
 document.write("<font color='#009900'>aktiviert</font>")
}
//-->

