谁能帮我看看下面的程序为什么无法在网页中打开文档
<html><head>
<script type="text/javascript">
function ObjectLoad()
{
if ( objectDestination )
{
var bodyElement = objectDestination.parentElement;
if ( bodyElement.objectSource )
{
bodyElement.innerHTML = "<embed width=100% height=100% fullscreen=yes>";
bodyElement.firstChild.src = bodyElement.objectSource;
}
}
}
</script>
</head>
<body objectSource="C:\Documents and Settings\wangwei\My Documents\zy.doc" onload="ObjectLoad();" leftmargin=100 topmargin=100 scroll=no>
<form id="objectDestination"></form> </body></html>