mainindex.html为要全屏打开的网页,index为第一打开,echo为第二打开
***************************************index.html
<html>
<script>
function CloseWin()
{
var ua=navigator.userAgent
var ie=navigator.appName=="Microsoft Internet Explorer"?true:false
if(ie){
    var IEversion=parseFloat(ua.substring(ua.indexOf("MSIE ")+5,ua.indexOf(";",ua.indexOf("MSIE "))))
 if(IEversion< 5.5){
    var str  = '<object id=noTipClose classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11">'
    str += '<param name="Command" value="Close"></object>';
    document.body.insertAdjacentHTML("beforeEnd", str);
    document.all.noTipClose.Click();
    }
    else{
    window.opener =null;
    window.close();
    }
  }
else{
  window.close()
  }
}function test2()
{window.open("echo.html", "", "fullscreen=3");
//window.opener.opener=null;下面这两个已注释的语句也是可行的哦。
//window.opener.close();
CloseWin();}
</script>
<body onload="test2()" width="0" height="0">
</body>
</html>
************************************echo.html
<html>
<script>
function CloseWin()
{
var ua=navigator.userAgent
var ie=navigator.appName=="Microsoft Internet Explorer"?true:false
if(ie){
    var IEversion=parseFloat(ua.substring(ua.indexOf("MSIE ")+5,ua.indexOf(";",ua.indexOf("MSIE "))))
 if(IEversion< 5.5){
    var str  = '<object id=noTipClose classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11">'
    str += '<param name="Command" value="Close"></object>';
    document.body.insertAdjacentHTML("beforeEnd", str);
    document.all.noTipClose.Click();
    }
    else{
    window.opener =null;
    window.close();
    }
  }
else{
  window.close()
  }
}
function test2()
{
window.open("MainIndex.html", "", "fullscreen=3");
CloseWin();
}
</script>
<body onload="test2()" ></body>
</html>