Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
919 B

  1. <%@ LANGUAGE = VBScript %>
  2. <% Option Explicit %>
  3. <!-- #include file="directives.inc" -->
  4. <!--#include file="iihelp.str"-->
  5. <%
  6. On Error Resume Next
  7. Dim pg
  8. pg="HTTP://" + Request.QueryString("pg")
  9. %>
  10. <SCRIPT LANGUAGE="JavaScript">
  11. function setUpHandlers() {
  12. <% if Session("IsIE") then %>
  13. window.onblur = new Function("window.focus();")
  14. window.focus();
  15. <% else %>
  16. <% if (CInt(Session("BrowserVer")) >= 4) then %>
  17. main.onblur=new Function("main.focus();")
  18. main.focus();
  19. <% end if %>
  20. <% end if %>
  21. }
  22. </SCRIPT>
  23. <HTML>
  24. <HEAD>
  25. <TITLE><%= (L_TITLE_TEXT) %></TITLE>
  26. </HEAD>
  27. <FRAMESET ROWS="0,*" BORDER=NO FRAMESPACING=0 FRAMEBORDER=0 onLoad="setUpHandlers();">
  28. <FRAME SRC="blank.htm" NAME="pad" SCROLLING=NO FRAMESPACING=0 BORDER=NO MARGINHEIGHT=0 MARGINWIDTH=0 SCROLLING=NO>
  29. <FRAME SRC="<%=pg %>" NAME="main" BORDER=NO FRAMESPACING=0 FRAMEBORDER=0 MARGINHEIGHT=0 MARGINWIDTH=0>
  30. </FRAMESET>
  31. </HTML>