Safe code
**************
<HTML>
<HEAD>
<LINK> <-- key to getting rid of warning-->
</HEAD>
<BODY />
</HTML>
<SCRIPT LANGUAGE="JSCRIPT">
function OnFinish(document)
{
OnWizFinish(document);
}
</SCRIPT>
////////////////////////////
Unsafe code - gives you warning "To help protect your security, your web
browser has restricted this file from showing active content that could
access your computer. Click here for options."
**************
<HTML>
<HEAD />
<BODY />
</HTML>
<SCRIPT LANGUAGE="JSCRIPT">
function OnFinish(document)
{
OnWizFinish(document);
}
</SCRIPT>