Different size JS PopUp's on a page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to have more than one Javescript popup size on a page. I would
like to use three with varying widths if possible. Also can anyone show me
the code to center the image within the popup. I've tried the normal <p align
"center"> but I'm obviously placeing it in the wrong place.
 
You would create 3 separately named JavaScript Popup windows functions. The image to be centered
must be first inserted into a actually page, then selected and centered, etc.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================
 
You would create 3 separately named JavaScript Popup windows functions. The image to be centered
must be first inserted into a actually page, then selected and centered, etc.


You can also create one function that accepts passed parameters and
uses them in a window.open() to pop the window in any size you want.

Hint: A good Javascript window pop up function checks to make sure the
window pops (due to pop-up blockers) and then displays the content in
the main window if it did not).
 
Back
Top