[snip] Is there a way to create a Window that is like the Help or Popup type windows one can create with JavaScript? I have an event calendar and I want the link for the event to go to a PHP page, but I want the page to be on top and have focus with a Close button. The PHP page will have some PHP code that will display the data passed by the GET var. [/snip] Also, if you don't want to use javascript, you can use target="_blank" in the link for the new window. You will not have any control over the look of the window though; <a href="foo.php" target="_blank"> And you can pass variables via the URL. Remember, PHP is server-side. In order to things client-side you will have to rely on client side tools such as javascript. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php