<!--
function safeActiveX() {
 try {
 ua = new ActiveXObject("Shell.UIHelper");
 } catch (e) {
    document.write("<TD BGCOLOR=red align=center>")
    document.write("<font color=white>Scripting blocked or disabled!</font></D></TD>")
    return
 } 
 document.write("<TD BGCOLOR=green align=center>")
 document.write("<font color=white>Yes</font></D></TD>")
}

function unsafeActiveX() {
 try {
 ua = new ActiveXObject("Scripting.FileSystemObject");
 } catch (e) {
    document.write("<TD BGCOLOR=red align=center>")
    document.write("<font color=white>not possible!</font></D></TD>")
    return
 } 
 document.write("<TD BGCOLOR=green align=center>")
 document.write("<font color=white>Yes</font></D></TD>")
}
//-->

