What I mean is:
I can open an html page with javascript, which allows me to set some windows properties like:
width=900,height=500,directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizeable=yes
I am now making a link using
'<a href="./bLogEvents?TableName=XXX">Audit</a>
(bLogEvents is a NTWS browse)
If I use a javascript link like:
<a href="javascript:var win=open('''&'
'&''',''DwsAuditPage'', ''width=900,height=500,directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizeable=yes'');" >Audit</a>
What do I have to type in the
to link to the same page?
Thanks
Alberto