Я сделал следующий обходной путь, и он работает
в help.html
<script type="text/javascript">
function openmain()
{
window.open('target.html', '_blank','toolbar=no,location=no,statusbar=no,menubar=no,scrollbars=no,resizable=yes,width=800,height=600');
}
</script>
в target.html
<script type="text/javascript">
var shell = new ActiveXObject("WScript.Shell");
shell.SendKeys("{F11}");
</script>