On Tue, 18 Nov 2003 17:28:50 +0200, you wrote: >My apologies for posting to the php group. I thought that perhaps using >javescript together with php was causing the problem. > >btw I have no "pop-up blockers" running.
Are you /certain/? A software firewall maybe? Are you at a business site where your sysadmin might be blocking junk? Which browser are you using? Have you tested in other browsers/on other machines? The following code works fine here (IE, Opera, Moz): <html> <head> <script language="JavaScript"> function boo() { window.open ("http://www.google.com/"); } </script> </head> <body onload="boo()"> <p>why does no window open?</p> </body> </html> This is well off-topic though. If you don't have any luck, contact me off-list. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php