Subversion Repositories DevTools

Rev

Rev 189 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<%@LANGUAGE="VBSCRIPT"%>
<%
'=====================================================
'|                                                   |
'|                        RELEASE OVERVIEW                                       |
'|                                                   |
'=====================================================
%>
<%
Option explicit
Response.Expires = 0
%>
<!--#include file="common/config.asp"-->
<!--#include file="common/common.asp"-->
<%
'------------ VARIABLE DEFINITION -------------
Dim rsNodes
Dim parRtag             ' URL parameter - release id
'------------ CONSTANTS DECLARATION -----------
Const hlColor = "#DAD8CD"
'------------ VARIABLE INIT -------------------
parRtag = Request("rtag")
Set rsNodes = Server.CreateObject("ADODB.Recordset")
'------------ CONDITIONS ----------------------
If parRtag = "" Then Call RaiseError ( enum_MSG_PAGE_CANNOT_BE_DISPLAYED, NULL )
'----------------------------------------------
%>
<%
Function Set_Row_Style ( SSLink )
        Set_Row_Style = "onMouseOver=""this.bgColor = '"& hlColor &"'"" onMouseOut =""this.bgColor = ''"" onClick=""location.href='"& SSLink &"'"""
End Function


Sub Get_All_Nodes ( rsTemp  )
        Dim query
        query = _
        " SELECT NETWORK_NODES.*, NODE_TYPES.node_icon"&_
        " FROM NODE_TYPES INNER JOIN NETWORK_NODES ON NODE_TYPES.pk = NETWORK_NODES.node_types_fk"&_
        " ORDER BY NETWORK_NODES.node_name"
        rsTemp.ActiveConnection = DB_CONN
        rsTemp.Source = query
        rsTemp.CursorType = 0
        rsTemp.CursorLocation = 2
        rsTemp.LockType = 3
        rsTemp.Open()
End Sub


Sub Get_All_Products ( NNparNN, NNparOS, rsTemp )
        Dim query
        query = GetQuery ( "node_product_list.sql" )
        query = Replace( query, "/*NETWORK_NODE_FK*/", NNparNN )
        query = Replace( query, "/*OPERATING_SYSTEM_FK*/", NNparOS )
        rsTemp.ActiveConnection = DB_CONN
        rsTemp.Source = query
        rsTemp.CursorType = 0
        rsTemp.CursorLocation = 2
        rsTemp.LockType = 3
        rsTemp.Open()
End Sub
%>
<%
'-- MAIN VBLINE ---------------------------------------
'------------------------------------------------------
%>
<html>
<head>
<title>Deployment Manager</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel=alternate media=print href="http://bms:8002/ManagerSuite/deployment_manager/release_overview.asp?rtag=1"> 
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
<link rel="stylesheet" href="images/navigation.css" type="text/css">
<script language="JavaScript" src="scripts/common.js"></script>
<script LANGUAGE="JavaScript">
<!--
function confirmDelete()
{
var agree=confirm("You are about to make this package official.\nAre you sure?");
if (agree)
        return true ;
else
        return false ;
}
// -->
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
<!-- HEADER -->
<!--#include file="_header.asp"-->
<!-- BODY ---->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td align="left" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
        <tr> 
          <td width="1%" valign="top" background="images/bg_bage.gif">
                    <table width="100%" border="0" cellpadding="5" cellspacing="0">
              <tr>
                <td background="images/bg_dark_bage.gif"><table width="10" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td><a href="#"><img src="images/btn_add.gif" alt="Add network node" width="25" height="25" border="0"></a></td>
                      <td><img src="images/spacer.gif" width="2" height="1"></td>
                      <td><img src="images/btn_add_os_d.gif" width="25" height="25" border="0"></td>
                      <td><img src="images/spacer.gif" width="2" height="1"></td>
                      <td><a href="#"><img src="images/btn_delete.gif" width="25" height="25" border="0"></a></td>
                      <td><img src="images/spacer.gif" width="10" height="1"></td>
                      <td><img src="images/btn_properties_d.gif" width="25" height="25" border="0"></td>
                      <td><img src="images/spacer.gif" width="2" height="1"></td>
                                          <td><a href="#"><img src="images/btn_search.gif" alt="Search this release" width="25" height="25" border="0"></a></td>
                    </tr>
                  </table></td>
              </tr>
              <tr>
                <td>
                                  <!-- TREE VIEW ---------------------------------------------->
                                  <table width="100%" border="0" cellspacing="0" cellpadding="0">
                    <%Call Get_All_Nodes ( rsNodes )
                                        Dim urlLink
                                        While ((NOT rsNodes.BOF) AND (NOT rsNodes.EOF))
                                                'If parRelHistory = "" Then
                                                        'urlLink = "dependencies.asp?rtag_id="& rsTemp.Fields("rtag_id")
                                                'Else
                                                        'urlLink = "vtree.asp?vtree_id="& rsTemp.Fields("vtree_id") & "&relhistory=true"
                                                'End If%>
                    <tr <%=Set_Row_Style( urlLink )%>> 
                      <td nowrap><img src="icons/<%=rsNodes.Fields("node_icon")%>" align="absmiddle" vspace="4" hspace="5"><a href="node.asp?rtag=<%=parRtag%>&nn=<%=rsNodes.Fields("pk")%>" class="body_tree"><%=rsNodes.Fields("node_name")%></a></td>
                    </tr>
                    <tr> 
                      <td background="images/bg_tree_separator.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                    </tr>
                    <%rsNodes.MoveNext
                                        WEnd%>
                    <%If rsNodes.RecordCount > 1 Then%>
                    <tr> 
                      <td nowrap class="err_alert"><img src="images/h_trsp_dot.gif" width="5" height="16" align="absmiddle" vspace="4"><b>No version trees available!&nbsp;</b></td>
                    </tr>
                    <tr> 
                      <td background="images/bg_home_orglite.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
                    </tr>
                    <%End If%>
                    <%rsNodes.Close
                                        Set rsNodes = nothing%>
                  </table> 
                  <!-- TREE VIEW END ------------------------------------------>
                </td>
              </tr>
            </table>
          </td>
          <td width="1%" background="images/bg_frame_separator.gif"><img src="images/spacer.gif" width="1" height="1"></td>
          <td width="100%" valign="top"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr> 
                <td width="100%" valign="top" background="images/bg_blue_bage_strip.gif"><img src="images/img_curves.jpg" width="206" height="123"></td>
                <td width="1%" background="images/bg_blue_bage_strip.gif">&nbsp;</td>
              </tr>
              <tr>
                <td background="images/bg_bage.gif">&nbsp;&nbsp;&nbsp;<a href="#" class="body_txt"><img src="images/btn_dropdown.gif" width="15" height="13" hspace="5" border="0" align="absmiddle">Reports</a></td>
                <td background="images/bg_bage.gif"><img src="images/spacer.gif" width="1" height="20"></td>
              </tr>
              <tr> 
                <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
                    <tr> 
                      <td width="1%"><img src="images/spacer.gif" width="20" height="10"></td>
                      <td width="100%" class="body_txt"><br> <br>
                        <span class="body_ttl2">Official Package List</span><br> <br>
                        valid as of 5/10/2003<br> <br> <br> 
                        <table width="100%" border="0" cellspacing="3" cellpadding="0">
                          <tr class="body_colb"> 
                            <td nowrap>Package Name</td>
                            <td nowrap>Version</td>
                            <td width="80%" nowrap>Last Modified</td>
                            <td width="40%" nowrap>&nbsp;</td>
                          </tr>
                          <tr> 
                            <td colspan="4" background="images/bg_tree_separator.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                          </tr>
                          <tr class="body_txt"> 
                            <td nowrap>ERGinftra</td>
                            <td nowrap>2.6.0</td>
                            <td nowrap>2/10/2003</td>
                            <td nowrap>&nbsp;</td>
                          </tr>
                          <tr class="body_txt"> 
                            <td nowrap>ERGcda</td>
                            <td nowrap>1.0.2-1</td>
                            <td nowrap>1/10/2003</td>
                            <td nowrap>&nbsp;</td>
                          </tr>
                          <tr> 
                            <td colspan="4" background="images/bg_tree_separator.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                          </tr>
                        </table>
                        <p>&nbsp;</p>
                        <table width="100%" border="0" cellspacing="0" cellpadding="2">
                          <tr class="body_colb"> 
                            <td width="1%" nowrap>Package Name&nbsp;&nbsp;&nbsp;</td>
                            <td width="1%" nowrap>Version&nbsp;&nbsp;&nbsp;</td>
                            <td width="1%" nowrap>Last Modified</td>
                            <td width="100%" nowrap>&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" class="body_txtr">Removed</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                        </table>
                        <p>&nbsp;</p>
                        <p><br>
                          <br>
                        </p>
                        <table width="100%" border="0" cellspacing="0" cellpadding="2">
                          <tr class="body_colb"> 
                            <td width="1%" nowrap>&nbsp;</td>
                            <td width="1%" nowrap>Install Order&nbsp;&nbsp;&nbsp;</td>
                            <td width="1%" nowrap>Package Name&nbsp;&nbsp;&nbsp;</td>
                            <td width="1%" nowrap>Version&nbsp;&nbsp;&nbsp;</td>
                            <td width="50%" nowrap>Comments</td>
                            <td width="1%" nowrap>Last Modified&nbsp;&nbsp;&nbsp;</td>
                            <td width="100%" nowrap>&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td><img src="images/spacer.gif" width="1" height="1"></td>
                            <td align="center" valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap class="body_col"><img src="icons/server_16.gif" width="19" height="19" hspace="3" align="absmiddle">Application 
                              Server</td>
                            <td align="center" valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td align="center" valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap class="body_scol">Windows 
                              2000</td>
                            <td align="center" valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td align="center" valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td align="center" valign="top">1</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">asdl adlkalkadl aslkdlas dkjd alsjdda 
                              slkdjas dalksjd </td>
                            <td valign="top">15/5/2003</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td align="center" valign="top">1</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">asdl adlkalkadl aslkdlas dkjd alsjdda 
                              slkdjas dalksjd </td>
                            <td valign="top">15/5/2003</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td align="center" valign="top">1</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">asdl adlkalkadl aslkdlas dkjd alsjdda 
                              slkdjas dalksjd </td>
                            <td valign="top">15/5/2003</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap class="body_scol">Solaris</td>
                            <td align="center" valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td align="center" valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td align="center" valign="top">1</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">asdl adlkalkadl aslkdlas dkjd alsjdda 
                              slkdjas dalksjd </td>
                            <td valign="top">15/5/2003</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td align="center" valign="top">1</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">asdl adlkalkadl aslkdlas dkjd alsjdda 
                              slkdjas dalksjd </td>
                            <td valign="top">15/5/2003</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap class="body_col"><img src="icons/db_server_16.gif" width="19" height="19" hspace="3" align="absmiddle">Database 
                              Server</td>
                            <td align="center" valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td align="center" valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap class="body_scol">Windows 
                              2000</td>
                            <td align="center" valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td align="center" valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td align="center" valign="top">1</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">asdl adlkalkadl aslkdlas dkjd alsjdda 
                              slkdjas dalksjd </td>
                            <td valign="top">15/5/2003</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td align="center" valign="top">1</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">asdl adlkalkadl aslkdlas dkjd alsjdda 
                              slkdjas dalksjd </td>
                            <td valign="top">15/5/2003</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td align="center" valign="top">1</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">asdl adlkalkadl aslkdlas dkjd alsjdda 
                              slkdjas dalksjd </td>
                            <td valign="top">15/5/2003</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td align="center" valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                        </table>

                        <p><br>
                        </p>
                        <table width="100%" border="0" cellspacing="0" cellpadding="2">
                          <tr class="body_colb"> 
                            <td width="1%" nowrap>&nbsp;</td>
                            <td width="1%" nowrap>Package Name&nbsp;&nbsp;&nbsp;</td>
                            <td width="1%" nowrap>Version&nbsp;&nbsp;&nbsp;</td>
                            <td width="1%" nowrap>&nbsp;</td>
                            <td width="100%" nowrap>&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap class="body_scol">15/5/2003</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" class="body_txtr">Removed</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap class="body_scol">16/5/2003</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap class="body_row"><strong>16/5/2003</strong></td>
                            <td colspan="4" valign="top" nowrap><strong>Official 
                              - R100 some other tag here</strong></td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap class="body_scol">18/5/2003</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top"></td>
                          </tr>
                        </table>
                        <p>&nbsp;</p>
                        <p>&nbsp;</p>
                        <p>&nbsp;</p>
                        <table width="100%" border="0" cellspacing="0" cellpadding="2">
                          <tr class="body_colb"> 
                            <td width="1%" nowrap>&nbsp;</td>
                            <td width="1%" nowrap>Package Name&nbsp;&nbsp;&nbsp;</td>
                            <td width="1%" nowrap>Version&nbsp;&nbsp;&nbsp;</td>
                            <td width="100%" nowrap>&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap background="images/bg_rep_line.gif" class="body_scol"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" nowrap background="images/bg_rep_line.gif"></td>
                            <td valign="top" nowrap background="images/bg_rep_line.gif"></td>
                            <td valign="top"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap class="body_scol">15/5/2003</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap class="body_scol">16/5/2003</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                          <tr class="body_row"> 
                            <td valign="top" nowrap class="body_scol">18/5/2003</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                          </tr>
                          <tr class="body_row"> 
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top"></td>
                          </tr>
                        </table>
                        <br>
                        <br>
                        <br>                        <br>
                        <br>
                        <table width="100%" border="0" cellspacing="0" cellpadding="2">
                          <tr class="body_colb">
                            <td width="1%" nowrap>&nbsp;</td>
                            <td width="1%" nowrap>&nbsp;</td>
                            <td width="1%" nowrap>Package Name&nbsp;&nbsp;&nbsp;</td>
                            <td width="1%" nowrap>Version&nbsp;&nbsp;&nbsp;</td>
                            <td width="1%" nowrap>Test Name&nbsp;&nbsp;&nbsp;</td>
                            <td width="100%" nowrap>Test Summary </td>
                            <td width="1%" nowrap>Attachment</td>
                            <td width="1%" align="center" nowrap>Stamp</td>
                            <td width="1%" nowrap>Test Completed &nbsp;&nbsp;&nbsp;</td>
                          </tr>
                          <tr class="body_row">
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                          <tr class="body_row">
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                          <tr class="body_row">
                            <td valign="top" nowrap class="body_scol">PRODUCTS</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                          </tr>
                          <tr>
                            <td><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                          <tr class="body_row">
                            <td>&nbsp;</td>
                            <td nowrap><img src="images/i_locked.gif" width="7" height="10" hspace="2"></td>
                            <td nowrap>ERGinfra</td>
                            <td nowrap>2.6.0-1</td>
                            <td nowrap>&nbsp;</td>
                            <td>&nbsp;</td>
                            <td align="center" nowrap>&nbsp;</td>
                            <td nowrap>&nbsp;</td>
                            <td nowrap>&nbsp;</td>
                          </tr>
                          <tr class="body_row">
                            <td>&nbsp;</td>
                            <td nowrap>&nbsp;</td>
                            <td nowrap>&nbsp;</td>
                            <td nowrap>&nbsp;</td>
                            <td valign="top" nowrap bgcolor="#F5F5F5">Test One </td>
                            <td valign="top" bgcolor="#F5F5F5"><p>Some Summary<br>
                              dasd<br>
                              asdsaa</p>
                              <p>dadasdas </p>                              </td>
                            <td align="center" valign="top" nowrap bgcolor="#F5F5F5"><img src="images/i_results.gif" width="15" height="16"></td>
                            <td valign="top" nowrap bgcolor="#F5F5F5">25/03/2003 <a href="#" class="txt_linked">David Pane</a> </td>
                            <td align="center" valign="top" nowrap bgcolor="#F5F5F5">&nbsp;</td>
                          </tr>
                          <tr class="body_row">
                            <td>&nbsp;</td>
                            <td nowrap>&nbsp;</td>
                            <td nowrap>&nbsp;</td>
                            <td nowrap>&nbsp;</td>
                            <td valign="top" nowrap>Test 2 </td>
                            <td valign="top">LKjfdk sdlkjfsd flskj sdlkjsfdl ksdlkj sdfljsdf<br>
                              kfsdjljk </td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                          </tr>
                          <tr>
                            <td><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                          <tr class="body_row">
                            <td>&nbsp;</td>
                            <td nowrap><img src="images/i_locked.gif" width="7" height="10" hspace="2"></td>
                            <td nowrap>ERGabc</td>
                            <td nowrap>1.0.0.mas</td>
                            <td nowrap>&nbsp;</td>
                            <td>&nbsp;</td>
                            <td align="center" nowrap>&nbsp;</td>
                            <td nowrap>&nbsp;</td>
                            <td nowrap>&nbsp;</td>
                          </tr>
                          <tr class="body_row">
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                          <tr class="body_row">
                            <td valign="top" nowrap class="body_scol">PRODUCTS</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                          </tr>
                          <tr class="body_row">
                            <td valign="top" nowrap class="body_scol">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                          </tr>
                          <tr class="body_row">
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                          </tr>
                          <tr class="body_row">
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                          </tr>
                          <tr class="body_row">
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                          </tr>
                          <tr class="body_row">
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                          <tr class="body_row">
                            <td valign="top" nowrap class="body_scol">18/5/2003</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                          </tr>
                          <tr class="body_row">
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                          </tr>
                          <tr class="body_row">
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                          </tr>
                          <tr class="body_row">
                            <td>&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>ERGinfra</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top">&nbsp;</td>
                            <td valign="top" nowrap>&nbsp;</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                            <td valign="top" nowrap>2.6.0-1</td>
                          </tr>
                          <tr class="body_row">
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                            <td valign="top" background="images/bg_rep_line.gif"></td>
                          </tr>
                        </table>                        <p>&nbsp;</p>
                        <table width="100%"  border="0" cellspacing="0" cellpadding="2">
                          <tr>
                            <td width="101%" nowrap class="body_colb">New Deployable Package</td>
                          </tr>
                          <tr>
                            <td background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                          </tr>
                          <tr>
                            <td nowrap class="body_row">Nothing New Found! </td>
                          </tr>
                          <tr>
                            <td nowrap class="body_row"><a href="#"><img src="images/i_go2url.gif" width="14" height="14" hspace="3" border="0" align="absmiddle"></a>Go to <a href="#" class="txt_linked">Singapore &gt; Iteration 6</a> </td>
                          </tr>
                        </table>                        
                        <br>
                        <br>
                        <br>
                        <table width="100%"  border="0" cellspacing="0" cellpadding="2">
                          <tr>
                            <td colspan="3" nowrap class="body_colb">Current Deployable Packages </td>
                          </tr>
                          <tr background="images/bg_rep_line.gif">
                            <td colspan="3"><img src="images/spacer.gif" width="1" height="1"></td>
                          </tr>
                          <tr>
                            <td width="1%" background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td width="1%" background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                            <td width="100%"><img src="images/spacer.gif" width="1" height="1"></td>
                          </tr>
                          <tr>
                            <td nowrap class="body_scol">ERGcsc 1.0.0 </td>
                            <td>&nbsp;</td>
                            <td>&nbsp;</td>
                          </tr>
                          <tr>
                            <td>&nbsp;</td>
                            <td nowrap class="body_row">cs 1.0.0 </td>
                            <td nowrap class="err_alert">Not Deployable! </td>
                          </tr>
                                                  <tr background="images/bg_rep_line.gif">
                            <td colspan="3"><img src="images/spacer.gif" width="1" height="1"></td>
                          </tr>
                          
                        </table>                        <p><br>
                          <br>
                          <br>
                          <br>
                          <br>
                          <a href="http://bms:8002/ManagerSuite/deployment_manager/release_overview.asp?rtag=1" rel=alternate media=print class="body_txt"><img src="images/btn_print.gif" width="23" height="24" hspace="4" border="0" align="absmiddle">Print 
                          this report</a></p></td>
                    </tr>
                  </table></td>
                <td><img src="images/spacer.gif" width="1" height="400"></td>
              </tr>
              <tr> 
                <td valign="top" background="images/bg_action_btns.gif">&nbsp;</td>
                <td background="images/bg_action_btns.gif"><img src="images/spacer.gif" width="1" height="30"></td>
              </tr>
            </table></td>
        </tr>
      </table> </td>
  </tr>
</table>
<!-- FOOTER -->
<!--#include file="_footer.asp"-->
</body>
</html>