How rude.
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
==================
"oiruop" <webforumsuser@macromedia.com> wrote in message
news:fpki5e$2f5$1@forums.macromedia.com...
> i'm building a website in dreamweaver for a friend and he wanted the
> browser to
> resize to a specific size once the user goes to the site. the script i
> have now
> works fine, but then when i go to another page, the browser bounces out
> and
> then resizes. is there a script that would just keep the browser the same
> size
> without having to bounce out? thanks.
>
> here's the link to view the issue yourself.
> http://www.ohhello.tv/index2.html
>
> and click on any of the left side nav links to see the browser quickly
> bounce
> out and then resize. thanks.
>
> <SCRIPT>
>
> window.resizeTo(724,1000);
>
> </SCRIPT>
>
>
> <SCRIPT LANGUAGE="javascript">
>
> var width = screen.width
>
> var height = screen.height
>
> document.write("<body onUnload=window.resizeTo("+width+ "," +height+")>")
>
> </SCRIPT>
>