|
I am successfully opening popups using a line like this:
["Description","javascript:Start('http://www.website.com/dir/stuff.htm','win1','width=450,height=550,directorie s=no,location=yes,menubar=no,scrollbars=yes,status =no,toolbar=no,resizable=yes')"],
It is used in conjunction with the following in the head:
<SCRIPT LANGUAGE="JavaScript">
function Start(page) {
OpenWin = this.open(page,"CtrlWindow","width=450,height=550, left=150,top=20,directories=no,location=no,menubar =no,scrollbars=yes,status=no,toolbar=no,resizable= yes");
}
</SCRIPT>
(It just occurs to me that there is unnecessary redundancy here)
The only thing it does not do is surpress the gray bar at the bottom of the window? Is the bar in question called the status bar? Can you suggest how to get rid of it.
Regarding the redundency:
Can I leave all instructions in the head except width and height?
Can I omit all instructions from the line in the body except width and height?
|