Subversion Repositories DevTools

Rev

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

<%@LANGUAGE="VBSCRIPT"%>
<%
'=====================================================
'|                                                   |
'|                                PRINT REPORT                                   |
'|                                                   |
'=====================================================
%>
<%
Option explicit
Response.Expires = 0
%>
<!--#include file="common/conf.asp"-->
<!--#include file="common/globals.asp"-->
<!--#include file="common/formating.asp"-->
<!--#include file="common/qstr.asp"-->
<!--#include file="common/common_subs.asp"-->
<!--#include file="common/reports_def.asp"-->
<%
'------------ VARIABLE DEFINITION -------------
Dim parRepNum
Dim parGroup
Dim parPrint
Dim Section
'------------ CONSTANTS DECLARATION -----------
Const img_Advanced_Search = "<img src='images/img_reports_adv_search.jpg' width='199' height='164'>"
Const img_Admin_Reports   = "<img src='images/img_reports_admin.jpg' width='199' height='164'>"
Const img_Reports                 = "<img src='images/img_reports2.jpg' width='199' height='164' border='0' alt=''>"
'------------ VARIABLE INIT -------------------
parGroup = Request("group")
parRepNum = Request("repnum")
parPrint = Request("print")
'------------ CONDITIONS ----------------------
'----------------------------------------------
%>
<%
' Document Type Download 
If Request("doctype") = "word" Then
        Response.ContentType = "application/msword"
        
ElseIf Request("doctype") = "excel" Then
        Response.ContentType = "application/vnd.ms-excel"
        
End If
%>
<html>
<head>
<title>Release Manager</title>
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style media="print">
   .myWatermark{
      z-index:-1;
      position:absolute;
      display:inline;
      width:100%;
   }
</style>
<style media="screen">
   .myWatermark{
      display:none;
   }
</style>
<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="images/common.js"></script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr> 
    <td valign="bottom" align="right">&nbsp;</td>
    <td align="right"><a href="index.asp"><img src="images/b_release_manager_small.jpg" width="300" height="32" border="0"></a></td>
  </tr>
  <tr> 
    <td background="images/h_dot.gif" height="1"></td>
        <td background="images/h_dot.gif" height="1"></td>
  </tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr> 
          <td colspan="2" background="images/bg_lght_gray.gif" class="rep_ttl"><br>
                  <!-- REPORT TITLE ----------------->
                  <%Section = "TITLE"%>
                  <b><!--#include file="_reports_call.asp"--></b>
                  <!-- REPORT TITLE END ------------->
                  </td>
        </tr>
        <tr> 
          <td colspan="2" background="images/bg_action_norm.gif" class="body_scol_thin" nowrap>Generated on <%=ToLongDate ( Date )%></td>
        </tr>
        <tr> 
          <td valign="top" background="images/bg_action_norm.gif"><!--#include file="reports_image_definition.asp"--></td>
          <td background="images/bg_bage.gif"> 
                    <!-- FORM ----------------------->
                        <%Section = "FORM"%>
                        <!--#include file="_reports_call.asp"-->
                        <!-- FORM END ------------------->
                  </td>
        </tr>
        <tr> 
          <td width="1%" background="images/bg_action_norm.gif"><img src="images/spacer.gif" width="1" height="1"></td>
          <td width="100%" background="images/bg_action_norm.gif"><img src="images/spacer.gif" width="1" height="1"></td>
        </tr>
      </table> 
      <!-- REPORT ------------------------------------->
          <table width="100%" border="0" cellspacing="30" cellpadding="0">
                <tr>
                  <td>
                  <%Section = "BODY"%>
              <!--#include file="_reports_call.asp"-->
                  </td>
                </tr>
          </table>
      <!-- REPORT END ------------------------------------->
<div class="myWatermark">
<!--#include file="_footer.asp"-->
</div>

</body>
</html>