ok. The following will open automatically with all the toolbars and menus and stuff...:
<head>
<script language="JavaScript">
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=xxx,height=xxx,left=xxx,top=xxx');");
}
</script>
</head>
<BODY onLoad="javascript:popUp('filename-or-url')">
This one opens when you use the link and has no menus or toolbars etc:
<head>
<script language="JavaScript">
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=350');");
}
</script>
</head>
<body>
<A HREF="javascript:popUp('filename-or-url')">Open the Popup Window</A>
Comments
This one opens when you use the link and has no menus or toolbars etc:
Hope all that works...
i am to lazy to do it:P
Or do you want the 2nd one to open automatically or what????
The Royal Ram