home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 September / CHIPCD_9_99.iso / software / uaktualnienia / OptionPackPL / iis4_02.cab / layout.inc < prev    next >
Encoding:
Text File  |  1998-04-27  |  1.6 KB  |  45 lines

  1. <%
  2.  If myinfo.Theme = "gunmetal" Then
  3.     '    $Date: 9/12/97 11:58a $
  4.     '    $ModTime: $
  5.     '    $Revision: 16 $
  6.     '    $Workfile: layout.inc $
  7.     response.write "<TABLE width='100%' height='100%' cellpadding='0'"_
  8.     & " cellspacing='0' border='0'><TR>"
  9. '                ******************* Right  Column  *************
  10.      response.write "<TD Valign='TOP' align=left Width=200"_
  11.      & " BGColor='#868686' Background='/iissamples/homepage/themes/gunmetal/gradient.gif'>"
  12.      call page_datetime
  13.      call page_messaging
  14.      call file_check        'Checks for published files
  15.      call page_links
  16. '                ******************* Center Column  *************
  17.      response.write "</TD><TD Width='20' rowspan=2 BGColor='#868686'>"
  18. '               ******************* Right  Column  *************
  19.     response.write "<TD Valign='TOP' Align='left' BGColor='#DAE4DC' rowspan=2>"_
  20.     & "<TABLE border=0 width='100%' height='100%' cellpadding='5' cellspacing='0'><TR>"_
  21.     & "<TD Valign='TOP' class='bg3' Colspan=2 Height=80><H1>"
  22.     call Title
  23.     response.write "</H1></TD></TR><TR>"_
  24.     & "<TD Valign=top align=left Colspan=2>"
  25.     call layout_Email
  26.     response.write "</TD></TR><TR><TD>"
  27.     call Phone
  28.     response.write "</TD><TD>"
  29.     call faxPhone
  30.     response.write "</TD></TR><TR><TD Colspan=2>"
  31.     call Address
  32.     DIM n
  33.     For n = 1 to 4
  34.     response.write "</TD></TR><TR><TD Colspan=2>"
  35.     response.write Heading(n)
  36.     Next
  37.     response.write "</TD></TR></TABLE></TD></TR>"_
  38.     & "<TR><TD height=32 Align=center"_
  39.     & " BGColor='#868686' Background='/iissamples/homepage/themes/gunmetal/gradient.gif'>"
  40.     call ie_logo
  41.     response.write "</TD></TR></TABLE>"
  42. End If
  43. %>
  44.  
  45.