Stupid Question on new page opening?

R

RnR Ron

Can someone jelp me out here - what is the easiest way to have a page
upen from a hyperlink into a new window where the browser's tool and button
bars are suppressed. I need the new page to open full window with only a
page title displayed. Short of a java script is this possable? If not can
you syggest a script that's easy to use on multiple links on one page.

Thanks very much in advance.
Rock 'n' Roll Ron
 
C

Chris

I've used

<a href="0103.htm"
onClick="MyWindow=window.open('0103R.htm','MyWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=630,height=550,left=30,top=30');
return false;">18&nbsp;Jan</a>

Where '18&nbsp;Jan' is the page you want to open in 'MyWindow' and
'0103R.htm' is the link you click to bring up the new page. Play with
numbers to get your desired page size and position.

HTH.

Chris.
 
R

RnR Ron

Forgive me, but where and how do I "Play with numbers"? Is this referring
to a parameter entry I can enter when creating the link in the Hyperlink
properties window? And how can I suppress the browser toolbars in the new
page window to show only the page title bar?

Thanks for responding.
Rock 'n' Roll Ron
 
Top