1、 '满屏显示
<SCRIPT LANGUAGE="VBScript">
sub window_onload
dim newWindow
newWindow=window.open("***.asp","newW",'fullscreen,scrollbars')
newWindow.focus
end sub
}
</script>
2、'指定位置、指定大小显示
<script type="text/javascript">
<!--
var iwidth;
var iheight;
iwidth=100;
iheight=100;
newwin=window.open('***.asp')
newwin.resizeTo(iwidth,iheight);
newwin.moveTo(10, 10);
window.close()
//-->
</script>