Login | |
|
 |
Re: opening pages in full screen - 9/30/2004 3:18:26 AM
|
|
 |
|
| |
dalejwright22
Posts: 11
Score: 0
Joined: 9/15/2004
From: United Kingdom
Status: offline
|
You use Javascript to do this. You set prop's of the window object. try this: Code: <script type="text/javascript"> function openwindow(url) { window.open(url,"pop","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=yes, width=600, height=450") } </script> then use this hyperlink <a href="javascript:openwindow('YourPage.htm');">
|
|
| |
|
|
|
|
|