mirror of https://github.com/tongzx/nt5src
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.
26 lines
717 B
26 lines
717 B
<%@ LANGUAGE = VBScript %>
|
|
<% Option Explicit %>
|
|
<!-- #include file="directives.inc" -->
|
|
|
|
<% if Session("FONTSIZE") = "" then %>
|
|
<!--#include file="iito.inc"-->
|
|
<% else %>
|
|
<!--#include file="iisetfnt.inc"-->
|
|
<!--#include file="iilog.str"-->
|
|
<%
|
|
dim bScrolling
|
|
|
|
If Session("hasDHTML") then
|
|
bScrolling = "NO"
|
|
else
|
|
bScrolling = "YES"
|
|
end if
|
|
%>
|
|
<HTML>
|
|
<FRAMESET ROWS="<%= iVScale(L_HEADFRAME_H) %>,*" BORDER=NO FRAMESPACING=1 FRAMEBORDER=0>
|
|
<FRAME SRC="iiloghd.asp" NAME="title" BORDER=NO FRAMESPACING=0 FRAMEBORDER=0 MARGINHEIGHT=0 MARGINWIDTH=0 SCROLLING=NO>
|
|
<FRAME SRC="iilogmn.asp" NAME="head" SCROLLING=<%= bScrolling %> FRAMESPACING=0 BORDER=NO MARGINHEIGHT=5 MARGINWIDTH=5>
|
|
</FRAMESET>
|
|
</HTML>
|
|
|
|
<% end if %>
|