Hard Reload
To See Menu |
| |
|
|
window.open()
method |
|
|
<script language="JavaScript">
<!--
newWin = null
function more() {
|
Create a new window by using the window.open()
method. Define the "url",
"title",
& "options".
Use an empty string ""
to create a window on the fly. By naming the window, cross window communication is
possible.
|
|
|
var options="height=400,width=400,"
+top=5,left=0,status=yes,location=no,"
+"toolbars=yes,directories=no,menubar=yes,"
+ "scrollbars=yes,resizable=yes;"
|
| Window
Options |
default
underlined |
|
|
|
|
| height |
pixels |
toolbars |
yes/no |
| width |
pixels |
directories |
yes/no |
| top MSIE |
pos. x |
menubar |
yes/no |
| left MSIE |
pos. y |
scrollbars |
yes/no |
| status |
yes/no |
resizable |
yes/no |
| location |
yes/no |
copyhistory |
yes/no |
| |
|
|
|
|
|
|
newWin.open("url","title",options) }
//-->
</script>
|
|
|
|
|