<!--
function safeActiveX() {
 try {
 ua = new ActiveXObject("Shell.UIHelper");
 } catch (e) {
    document.write("<TD BGCOLOR=#EEEEEE width=150 height=50 align=center>")
    document.write("<B>not possible!</B></D></TD>")
    return
 } 
 document.write("<TD BGCOLOR=red width=150 height=50 align=center>")
 document.write("<B>works!</B></D></TD>")
}

function unsafeActiveX() {
 try {
 ua = new ActiveXObject("Scripting.FileSystemObject");
 } catch (e) {
    document.write("<TD BGCOLOR=#EEEEEE width=150 height=50 align=center>")
    document.write("<B>not possible!</B></D></TD>")
    return
 } 
 document.write("<TD BGCOLOR=red width=150 height=50 align=center>")
 document.write("<B>works!</B></D></TD>")
}
//-->

