> They look great! I clicked help though and two windows popped up?

Got that figured out, John. When calling a function that opens a window,
you can't put the function as the href parameter like so:

  <a href="javascript:openHelp('blah');">Help</a>

Instead, you pass a dummy href and us the OnClick event, like so:

  <a href="#" onClick="openHelp('blah');">Help</a>

Otherwise, it tries to open the window twice, once with JS and once
without.

Thanks for the catch!

Ron

Please visit http://www.ipswitch.com/support/mailing-lists.html 
to be removed from this list.

Reply via email to