I have this code which works fine but it opens 2 windows with the same content but i only want on new windows full screen to open. why is it opening windows. can someone help. code lists content of diretory and sets up the URL like so they can be clicked and opens them in new fullscreen window. Really hope someone can help me
<%
Set fs = Server.CreateObject("Scripting.FileSystemObject" )
Set fldr = fs.GetFolder( "c:\inetpub\wwwroot\EMEA\history" )
For Each File in fldr.files
%>
<A href="http://198.90.24.32/EMEA-NMS/netcool-history/2007-history/<%=File.Name%>" target="_blank" onMouseOver="window.status='To Close Fullscreen press Alt+F4.';return true" onclick="window.open(this.href,'netcool','fullscreen=yes')" ><%=File.Name%></a><br>
<%
Next
%>


Reply With Quote
Bookmarks