Open Maximized -
08-11-2007
, 12:09 PM
This script almost does what I want it to do:
<a href="javascript:myWindowOpen('http://www.galileo.usg.edu',
'new_frame', '','0')" title="link opens in new window">GALILEO</a>
The only difference is that I want it to open maximized.
It uses this script (in the header):
<SCRIPT LANGUAGE="JavaScript">
<!--
function myWindowOpen(win_url,win_name,win_features,set_par ent) {
var new_win
var win_features
win_features="width=500,height=500,menubar=0,toolb ar=1,scrollbars=1,status=0,location=0,resizable=1"
new_win=window.open(win_url, win_name, win_features)
new_win.focus()
if (set_parent==1) {
new_win.par=self
}
}
//-->
</SCRIPT>
Any suggestions?
Regards,
Fred |