%@ Language=VBScript %>
<%
'********************************************************************
' Created By: Nadeem Fatmi
' Purpose:Org. Team page for FBA
' Updated On: 05/1/02
'********************************************************************
Option Explicit
%>
<%
'********************************************************************
'Main
'declare variable
Dim strPage
'********************************************************************
'********************************************************************
' Client Side Functions
'call the function to get page name
strPage = GetCurrentPage()
'==================================================================================
' HTML
'==================================================================================
'call this header and pass title and the page name without the extension
'check if querystring has print option
If trim(ucase(Request.QueryString("Print"))) = "Y" Then
Call PrintHeader("Organizational Team",1)
Else
Call DisplayHeader("CompanyOverview","Team,Internal Team,External Team","Company Overview")
End If
%>
| |
| Ph.(770)592-5024 |
Fax.(770)592-0624 |
|
|
| |
|
|
|
<%
If trim(ucase(Request.QueryString("Print"))) = "Y" Then
Call PrintFooter()
Else
Call DisplayFooter("CompanyOverview")
End If
%>