Opening Pages in a new window

D

DavidF

Try this:

<script language="JavaScript" type="text/javascript">function Show(Url,
Name, Features) { window.open(Url, Name, Features); }</script>

This the first part that you just insert into the page via the code fragment
feature. Just make sure it doesn't overlap any other element. The hyperlink
part works ok.

Good luck

DavidF
 
Top