Subversion Repositories DevTools

Rev

Rev 5506 | Rev 5607 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
119 ghuddy 1
<%
2
'=====================================================
5590 dpurdie 3
'   _dependencies_page.asp
145 ghuddy 4
'               Package Pages
119 ghuddy 5
'=====================================================
6
%>
7
<!--#include file="_tabs.asp"-->
8
<!--#include file="_action_buttons.asp"-->
9
<%
10
'------------ Variable Definition -------------
11
Dim parExtpkg, parExtrtag_id
12
Dim rsTemp
13
Dim CanIgnoreWarnings
14
'Dim parFileDiff
15
'Dim parComparePvId
16
'Dim parFileFilter
17
'Dim dFileFilter
18
'Dim parDepFilter
19
'Dim dDepFilter
20
'------------ Constants Declaration -----------
21
Const imgPkgLocked = "<img src='images/i_locked.gif' width='7' height='10' hspace='4' align='absmiddle'>"
22
Const imgPkgLockSpacer = "<img src='images/spacer.gif' width='7' height='10' hspace='4' align='absmiddle'>"
23
'------------ Variable Init -------------------
24
parExtpkg = QStrPar("extpkg")
25
parExtrtag_id = QStrPar("extrtag_id")
26
'----------------------------------------------
27
%>
28
<%
29
'-----------------------------------------------------------------------------------------------------------------
30
Sub Print_Pkg_Dependencies ( NNpv_id, NNrtag_id, BBextpkg )
145 ghuddy 31
   Dim rsTemp, Query_String, noDependencies
32
   noDependencies = FALSE
33
 
34
 
35
   Query_String = ReadFile( rootPath & "queries\dependencies.sql" )
36
 
37
   OraDatabase.Parameters.Add "RTAG_ID", NNrtag_id, ORAPARM_INPUT
38
   OraDatabase.Parameters("RTAG_ID").ServerType = ORATYPE_NUMBER
39
 
40
   OraDatabase.Parameters.Add "PV_ID", NNpv_id, ORAPARM_INPUT
41
   OraDatabase.Parameters("PV_ID").ServerType = ORATYPE_NUMBER
42
 
43
   Set rsTemp = OraDatabase.DbCreateDynaset( Query_String, 0 )
44
 
45
   CanIgnoreWarnings = FALSE
46
   If NNrtag_id <> "" AND is_daemon_enabled_release(NNrtag_id, TRUE) = FALSE Then
47
      If pkgInfoHash.Item("build_type") = "M" OR _
48
         ( pkgInfoHash.Item("build_type") = "A" AND pkgInfoHash.Item("dlocked") = "Y" ) OR _
49
         ( pkgInfoHash.Item("build_type") = "Y" AND pkgInfoHash.Item("dlocked") = "Y" ) Then
50
         CanIgnoreWarnings = TRUE
51
      End If
52
   End If
183 brianf 53
 
145 ghuddy 54
   %>
55
   <table width="100%" border="0" cellspacing="1" cellpadding="3">
56
      <form name="ignore_warnings" method="get" action="_ignore_warnings.asp" onSubmit="ProgressBar.style.visibility='visible';">
57
         <tr>
58
            <%If CanIgnoreWarnings Then%><td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field" align="center">Ignore<br>warnings</td><%End If%>
59
            <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field"></td>
60
            <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Name<br><img src="images/h_trsp_dot.gif" width="120" height="1"></td>
61
            <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field"><%=imgPkgLockSpacer%>Version</td>
62
            <td background="images/bg_form_lightbluedark.gif" nowrap width="100%" class="form_field"><%=imgPkgLockSpacer%>Released</td>
63
            <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field" align="center">Last&nbsp;Modified</td>
64
            <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field"></td>
183 brianf 65
            <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">&nbsp;&nbsp;&nbsp;</td>
145 ghuddy 66
         </tr>
67
         <%' Display "no dependencies" if needed%>
68
         <%If rsTemp.RecordCount = 0 Then%>
69
            <tr>
70
               <%If CanIgnoreWarnings Then%><td align="center" nowrap background="images/bg_form_lightgray.gif"></td><%End If%>
71
               <td align="center" background="images/bg_form_lightgray.gif" class="form_item">&nbsp;</td>
72
               <td background="images/bg_form_lightgray.gif" class="form_item">&nbsp;</td>
73
               <td background="images/bg_form_lightgray.gif" class="form_item">&nbsp;</td>
74
               <td background="images/bg_form_lightgray.gif" class="form_item">&nbsp;</td>
75
               <td background="images/bg_form_lightgray.gif" class="form_item">&nbsp;</td>
76
               <td background="images/bg_form_lightgray.gif" class="form_item"></td>
183 brianf 77
               <td background="images/bg_form_lightgray.gif" class="form_item">&nbsp;</td>
145 ghuddy 78
            </tr>
79
            <%
80
            noDependencies = TRUE
81
         End If
82
         %>
83
         <%
84
         Dim objTempSession, pkgURL, workInProgress
85
 
86
         Do Until ((rsTemp.BOF) OR (rsTemp.EOF))
87
            pkgURL = "#"
4043 dpurdie 88
            If NOT IsNull(rsTemp.Fields("dpv_link")) Then
89
                pkgURL = scriptName &"?pv_id="& rsTemp("dpv_link") &"&rtag_id="& NNrtag_id
90
            ElseIf NOT IsNull(rsTemp.Fields("orig_pv_id")) Then
91
                pkgURL = scriptName &"?pv_id="& rsTemp("orig_pv_id")
92
            End If
145 ghuddy 93
 
94
            If rsTemp("latest_dlocked") = "N" Then
95
               workInProgress = "<img src='images/i_user.gif' width='10' height='13' border='0' alt='Work is in progress...' align='absmiddle' hspace='2'>"
96
            Else
97
               workInProgress = ""
98
            End If
99
 
100
            %>
101
            <tr>
5175 dpurdie 102
               <%If CanIgnoreWarnings Then%>
103
					<td align="center" nowrap background="images/bg_form_lightbluedark.gif">
104
						<input type="checkbox" name="forced" value="<%=rsTemp("ignore_dpv")%>" <%=Define_Ignore_State ( rsTemp("ignore_warn"), rsTemp("is_patch_ignore"), rsTemp("pkg_state"), rsTemp("latest_pkg_version"), rsTemp("dlocked") )%>>
105
					</td>
106
			   <%End If%>
145 ghuddy 107
               <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
5175 dpurdie 108
				  <%=DefineStateIcon ( iif(rsTemp("pkg_state") <> 0,rsTemp("pkg_state"),rsTemp("deprecated_state")), rsTemp("dlocked"), rsTemp("ignore_warn"), rsTemp("is_patch_ignore"), pkgInfoHash.Item("build_type"), FALSE )%>
145 ghuddy 109
               </td>
4043 dpurdie 110
               <td background="images/bg_form_lightgray.gif" class="envPkg" nowrap><a href="<%=pkgURL%>" class="txt_linked"><%=rsTemp.Fields("dpkg_name")%></a></td>
145 ghuddy 111
               <td background="images/bg_form_lightgray.gif" class="form_item" nowrap><%If rsTemp("dlocked") = "Y" Then%><%=imgPkgLocked%><%Else%><%=imgPkgLockSpacer%><%End If%><%=rsTemp("dpkg_version")%></td>
112
               <td background="images/bg_form_lightgray.gif" <%If IsNull(rsTemp("ignore_warn")) Then%>class="sublbox_hitem"<%Else%>class="body_scol_thin"<%End If%>><%If rsTemp("latest_dlocked") = "Y" AND ( NOT IsNull(rsTemp("latest_pkg_version")) ) Then%><%=imgPkgLocked%><%Else%><%=imgPkgLockSpacer%><%End If%><%=rsTemp("latest_pkg_version")%></td>
113
               <td background="images/bg_form_lightgray.gif" class="form_item" nowrap><%If NOT IsNull(rsTemp.Fields("modifier_name")) Then%><a href="mailto:<%=rsTemp.Fields("modifier_email")%>" class="txt_linked"><%=workInProgress%><%=rsTemp.Fields("modifier_name")%></a> on <%=EuroDateTime ( rsTemp("modified_stamp")  )%><%End If%></td>
183 brianf 114
               <td background="images/bg_form_lightgray.gif" class="form_item">
5080 dpurdie 115
                        <%If (NOT pkgInfoHash.Item("is_sdkpkg")) AND ((pkgInfoHash.Item ("dlocked") = "N") OR (pkgInfoHash.Item ("dlocked") = "R")) Then%>
5190 dpurdie 116
                            <a href="_remove_build_dependency.asp?pv_id=<%=NNpv_id%>&dpv_id=<%=rsTemp("orig_pv_id")%>&rtag_id=<%=NNrtag_id%>" onClick="return vixConfirmDelete('this Build Dependency');"><img src="images/i_delete.gif" alt="Remove from list." width="13" height="12" hspace="3" border="0" title="Delete this package as a dependency"></a>
5080 dpurdie 117
                        <%Else%>
118
                            <img src="images/i_delete_disable.gif" width="13" height="12" hspace="3" border="0" title="Delete this package as a dependency">
119
                        <%End If%>
120
               </td>
121
               <td background="images/bg_form_lightgray.gif" class="form_item">
5083 dpurdie 122
               <%If (NNrtag_id <> "") and ((CInt(rsTemp("pkg_state")) = enumPKG_NOT_FOUND) OR (CInt(rsTemp("pkg_state")) = enumPKG_SDK_DEPENDENCY)) Then%>
183 brianf 123
               <%
124
                 Dim sonclick
125
                 Dim surl
126
                 surl = "_wform_add_missing_dependency.asp" &_
127
                   "?rfile=" & scriptName &_
128
                   "&ppv_id=" & NNpv_id &_
129
                   "&pv_id=" & rsTemp("orig_pv_id") &_
130
                   "&rtag_id=" & NNrtag_id
185 brianf 131
                 sonclick = "MM_openBrWindow('" & surl & "','AddDependency','resizable=yes,width=560,height=310');"
183 brianf 132
               %>
5080 dpurdie 133
                 <img onclick="<%=sonclick%>" src="images/i_add_missing_dep.gif" alt="Add missing dependency." width="15" height="15" hspace="3" border="0" title="Add this package to the Release">
183 brianf 134
               <%Else%>
135
                 <img src="images/i_add_missing_dep.gif" width="15" height="15" hspace="3" border="0" style="visibility:hidden">
136
               <%End If%>
137
               </td>
138
 
139
 
145 ghuddy 140
            </tr>
141
            <%
142
            rsTemp.MoveNext
143
         Loop
144
         %>
145
        <tr>
5178 dpurdie 146
            <%If noDependencies OR releaseIsClosed(ReleaseMode) Then%>
145 ghuddy 147
               <td></td>
148
            <%Else%>
149
               <%If CanIgnoreWarnings Then%><td nowrap background="images/bg_form_lightbluedark.gif" align="center"><input name="Submit" type="submit" class="form_btn" id="Submit" value="Apply" ></td><%End If%>
150
            <%End If%>
151
            <td colspan="2" class="body_scol"><SPAN id="ProgressBar" name="ProgressBar" style="visibility:hidden;"><img src="images/i_processing.gif" width="11" height="17" align="absmiddle" hspace="3">Processing...</SPAN></td>
183 brianf 152
            <td><img src="images/spacer.gif" width="150" height="1"></td>
145 ghuddy 153
            <td></td>
154
            <td></td>
155
            <td></td>
156
         </tr>
157
         <input type="hidden" name="pv_id" value="<%=NNpv_id%>">
158
         <input type="hidden" name="rtag_id" value="<%=NNrtag_id%>">
159
      </form>
160
   </table>
161
   <%
162
   OraDatabase.Parameters.Remove "RTAG_ID"
163
   OraDatabase.Parameters.Remove "PV_ID"
164
   rsTemp.Close
165
   Set rsTemp = nothing
119 ghuddy 166
End Sub
167
'-----------------------------------------------------------------------------------------------------------------
168
Sub Print_Patch_Dependencies ( NNpv_id, NNrtag_id, BBextpkg )
145 ghuddy 169
   Dim rsTemp, Query_String, noDependencies
170
   noDependencies = FALSE
171
 
172
   Query_String = ReadFile( rootPath & "queries\dependencies.sql" )
173
 
174
   OraDatabase.Parameters.Add "RTAG_ID", NNrtag_id, ORAPARM_INPUT
175
   OraDatabase.Parameters("RTAG_ID").ServerType = ORATYPE_NUMBER
176
 
177
   OraDatabase.Parameters.Add "PV_ID", NNpv_id, ORAPARM_INPUT
178
   OraDatabase.Parameters("PV_ID").ServerType = ORATYPE_NUMBER
179
 
180
   Set rsTemp = OraDatabase.DbCreateDynaset( Query_String, 0 )%>
181
 
182
   <table width="100%" border="0" cellspacing="1" cellpadding="3">
183
      <tr>
184
         <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Name<br><img src="images/h_trsp_dot.gif" width="120" height="1"></td>
185
         <td background="images/bg_form_lightbluedark.gif" nowrap width="100%" class="form_field"><%=imgPkgLockSpacer%>Version</td>
186
         <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field" align="center">Last&nbsp;Modified</td>
187
         <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field"></td>
188
      </tr>
189
      <%' Display "no dependencies" if needed%>
190
      <%If rsTemp.RecordCount = 0 Then%>
191
         <tr>
192
            <td background="images/bg_form_lightgray.gif" class="form_item">&nbsp;</td>
193
            <td background="images/bg_form_lightgray.gif" class="form_item">&nbsp;</td>
194
            <td background="images/bg_form_lightgray.gif" class="form_item">&nbsp;</td>
195
            <td background="images/bg_form_lightgray.gif" class="form_item">&nbsp;</td>
196
         </tr>
197
         <%
198
         noDependencies = TRUE
199
      End If
200
      %>
201
      <%
202
      Dim objTempSession, pkgURL, workInProgress
203
 
204
      Do Until ((rsTemp.BOF) OR (rsTemp.EOF))
205
         pkgURL = "#"
4043 dpurdie 206
         If NOT IsNull(rsTemp.Fields("dpv_link")) Then
207
            pkgURL = scriptName &"?pv_id="& rsTemp("orig_pv_id") &"&rtag_id="& parRtag_id
208
         ElseIf NOT IsNull(rsTemp.Fields("orig_pv_id")) Then
209
            pkgURL = scriptName &"?pv_id="& rsTemp("orig_pv_id")
210
         End If
145 ghuddy 211
 
212
         If rsTemp("latest_dlocked") = "N" Then
213
            workInProgress = "<img src='images/i_user.gif' width='10' height='13' border='0' alt='Work is in progress...' align='absmiddle' hspace='2'>"
214
         Else
215
            workInProgress = ""
216
         End If
217
 
218
         %>
219
         <tr>
220
            <td background="images/bg_form_lightgray.gif" class="envPkg" nowrap><a href="<%=pkgURL%>" class="txt_linked"><%If rsTemp("is_patch") = "Y" Then%><%=PatchIcon ( rsTemp("is_patch"), rsTemp("is_obsolete") )%><%End If%><%=rsTemp.Fields("dpkg_name")%></a></td>
221
            <td background="images/bg_form_lightgray.gif" class="form_item" nowrap><%If rsTemp("dlocked") = "Y" Then%><%=imgPkgLocked%><%Else%><%=imgPkgLockSpacer%><%End If%><%=rsTemp("dpkg_version")%></td>
222
            <td background="images/bg_form_lightgray.gif" class="form_item" nowrap><%If NOT IsNull(rsTemp.Fields("modifier_name")) Then%><a href="mailto:<%=rsTemp.Fields("modifier_email")%>" class="txt_linked"><%=workInProgress%><%=rsTemp.Fields("modifier_name")%></a> on <%=EuroDateTime ( rsTemp("modified_stamp") )%><%End If%></td>
155 ghuddy 223
            <td background="images/bg_form_lightgray.gif" class="form_item"><%If (pkgInfoHash.Item ("dlocked") = "N") OR (pkgInfoHash.Item ("dlocked") = "R") Then%><a href="_remove_build_dependency.asp?pv_id=<%=parPv_id%>&dpv_id=<%=rsTemp("orig_pv_id")%>&rtag_id=<%=parRtag_id%>" onClick="return confirmDelete('this Build Dependency');"><img src="images/i_delete.gif" alt="Remove from list." width="13" height="12" hspace="3" border="0"></a><%Else%><img src="images/i_delete_disable.gif" width="13" height="12" hspace="3" border="0"><%End If%></td>
145 ghuddy 224
         </tr>
225
         <%
226
         rsTemp.MoveNext
227
      Loop
228
      %>
229
      <tr>
230
         <td colspan="2" class="body_scol"><SPAN id="ProgressBar" name="ProgressBar" style="visibility:hidden;"><img src="images/i_processing.gif" width="11" height="17" align="absmiddle" hspace="3">Processing...</SPAN></td>
231
         <td></td>
232
         <td></td>
233
         <td></td>
234
      </tr>
235
   </table>
236
   <%
237
   OraDatabase.Parameters.Remove "RTAG_ID"
238
   OraDatabase.Parameters.Remove "PV_ID"
239
   rsTemp.Close
240
   Set rsTemp = nothing
119 ghuddy 241
End Sub
242
'-----------------------------------------------------------------------------------------------------------------
243
Function Define_Ignore_State ( BBcurr_ignore_state, cIsPatchIgnore, NNpkg_state, SSlatest, SSdlocked )
145 ghuddy 244
   ' ==== Ignore Warning Rules ====
245
   ' ENABLE - Dependency is   official  AND  PKG_STATE is OK  AND  has no latest  AND  current ignore warning is not ticked AND not Patch Ignore
246
   ' ENABLE - current ignore state is ticked AND not Patch Ignore
247
 
248
   If  (SSdlocked = "Y") AND _
249
      ( (CInt(NNpkg_state) <> enumPKG_STATE_OK) OR (SSlatest <> "") ) _
250
   Then
251
 
252
      Define_Ignore_State = " "& BBcurr_ignore_state
253
 
254
   Else
255
 
256
      Define_Ignore_State = "disabled "& BBcurr_ignore_state
257
 
258
   End If
259
 
260
 
261
   'If ( (SSdlocked = "Y") AND _
262
   '     (CInt(NNpkg_state) = enumPKG_STATE_OK) AND _
263
   '     (SSlatest <> "") AND _
264
   '     IsNull(BBcurr_ignore_state) AND _
265
   '    IsNull(cIsPatchIgnore) ) _
266
   '   OR _
267
   '   ( NOT IsNull(BBcurr_ignore_state)  AND  IsNull(cIsPatchIgnore) ) Then
268
   '
269
   '   Define_Ignore_State = " "& BBcurr_ignore_state
270
   'Else
271
   '   Define_Ignore_State = "disabled "& BBcurr_ignore_state
272
   'End If
119 ghuddy 273
End Function
274
'-----------------------------------------------------------------------------------------------------------------
275
'-----------------------------------------------------------------------------------------------------------------
276
%>
277
<%
278
'------------------------- MAIN LINE ---------------------------
279
 
280
 
281
'---------------------------------------------------------------
282
%>
283
<%If (parPv_id <> "") Then%>
145 ghuddy 284
   <!-- MAIN PAGE ------------------------------------------>
285
   <table width="100%" border="0" cellspacing="0" cellpadding="0">
286
      <tr>
287
         <td width="1%" background="images/bg_action_norm.gif"><IMG height=35 src="images/spacer.gif" width=15></td>
185 brianf 288
         <td width="100%" background="images/bg_action_norm.gif"><%Call RenderActionBar(parRtag_id,parPv_id)%></td>
145 ghuddy 289
         <td width="1%" background="images/bg_action_norm.gif"><IMG height=1 src="images/spacer.gif" width=15></td>
290
      </tr>
291
      <tr>
183 brianf 292
        <td background="images/bg_lght_gray.gif"><IMG height="45" src="images/spacer.gif" width=1></td>
293
        <td background="images/bg_lght_gray.gif"><%Call RenderStatus(parRtag_id,parPv_id)%></td>
294
        <td background="images/bg_lght_gray.gif">&nbsp;</td>
295
      </tr>
296
      <tr>
145 ghuddy 297
         <td background="images/bg_lght_gray.gif">&nbsp;</td>
298
         <td valign="bottom" background="images/bg_lght_gray.gif">
299
            <table width="100" border="0" cellspacing="0" cellpadding="0">
300
               <tr>
4687 dpurdie 301
                  <td><IMG height="1" src="images/spacer.gif" width="0" alt="tab-left-margin" ></td>
145 ghuddy 302
                  <td>
303
                     <!-- TABS ------------------------------------->
304
                     <%Call Generate_Tab_Menu ( TABarray1, "Dependencies", "orange" )%>
305
                  </td>
306
               </tr>
307
            </table>
308
         </td>
309
         <td background="images/bg_lght_gray.gif">&nbsp;</td>
310
      </tr>
311
      <tr>
312
         <td background="images/lbox_bg_orange.gif"><IMG height=35 src="images/spacer.gif" width=1></td>
313
         <td background="images/lbox_bg_orange.gif">
314
            <!-- TAB ACTION BUTTONS ------------------------------------->
315
            <%Call Action_Buttons ( "Build Dependencies" )%>
316
         </td>
317
         <td background="images/lbox_bg_orange.gif">&nbsp;</td>
318
      </tr>
319
      <tr>
320
         <td></td>
321
         <td valign="top">
322
            <!-- BUILD DEPENDENCIES ------------------------------------->
323
            <br>
324
            <fieldset>
325
               <legend class="body_colb">Build Dependencies</legend>
326
               <a name="DEPENDENCIES"></a>
327
               <%
328
               If pkgInfoHash.Item ("is_patch") = "Y" Then
329
                  Call Print_Patch_Dependencies ( parPv_id, parRtag_id, FALSE )
330
               Else
331
                  Call Print_Pkg_Dependencies ( parPv_id, parRtag_id, FALSE )
332
               End If
333
               %>
334
            </fieldset>
335
            <br><br>
336
            <!-- MODULE CHANGES ----------------------------------------->
337
            <table width="100%"  border="0" cellspacing="0" cellpadding="3">
338
               <tr>
339
                  <td align="right"><a href="javascript:;" onClick="MM_openBrWindow('_wform_dependency_changes.asp?rtag_id=<%=parRtag_id%>&pv_id=<%=parPv_id%>&rfile=<%=ScriptName%>&compare_pv_id=<%=Request("compare_pv_id")%>&filediff=<%=Request("filediff")%>','DependencyChanges','scrollbars=yes,resizable=yes,width=700,height=600')" class="txt_linked" title='Open this section in new window.'><%=LIMG_NEW_WINDOW%>New Window</a> </td>
340
               </tr>
341
            </table>
119 ghuddy 342
 
145 ghuddy 343
            <fieldset>
344
               <legend class="body_colb">Dependency Changes</legend>
345
               <!--#include file="_mod_dependency_changes.asp"-->
346
            </fieldset><br>
347
            <!----------------------------------------------------------->
348
         </td>
349
         <td>&nbsp;</td>
350
      </tr>
351
   </table>
119 ghuddy 352
 
353
<%Else%>
354
 
145 ghuddy 355
   <!-- NO PACKAGE SELECTED  ------------------------------------>
356
   <table width="100%" border="0" cellspacing="0" cellpadding="0">
357
      <tr>
358
         <td width="1%" background="images/bg_action_norm.gif"><IMG height=35 src="images/spacer.gif" width=15></td>
185 brianf 359
         <td width="100%" background="images/bg_action_norm.gif"><%Call RenderActionBar(parRtag_id,NULL)%></td>
145 ghuddy 360
         <td width="1%" background="images/bg_action_norm.gif"><IMG height=1 src="images/spacer.gif" width=15></td>
361
      </tr>
362
      <tr>
363
         <td background="images/bg_lght_gray.gif"><IMG height=50 src="images/spacer.gif" width=1></td>
187 brianf 364
         <td background="images/bg_lght_gray.gif"><%Call RenderStatus(parRtag_id,parPv_id)%></td>
145 ghuddy 365
         <td background="images/bg_lght_gray.gif"></td>
366
      </tr>
367
      <tr>
368
         <td background="images/bg_lght_gray.gif"></td>
369
         <td valign="bottom" background="images/bg_lght_gray.gif">
370
            <table width="100" border="0" cellspacing="0" cellpadding="0">
371
               <tr>
372
                  <td><IMG height=1 src="images/spacer.gif" width=150></td>
373
                  <td><!-- TABS -------------------------------------></td>
374
               </tr>
375
            </table>
376
         </td>
377
         <td background="images/bg_lght_gray.gif">&nbsp;</td>
378
      </tr>
379
      <tr>
380
         <td background="images/lbox_bg_orange.gif"><IMG height=35 src="images/spacer.gif" width=1></td>
381
         <td background="images/lbox_bg_orange.gif"><span class="sublbox_ttl">&laquo;&nbsp;Select package</span></td>
382
         <td background="images/lbox_bg_orange.gif">&nbsp;</td>
383
      </tr>
384
      <tr>
385
         <td></td>
386
         <td valign="top"><SPAN id="ProgressBar" name="ProgressBar" style="visibility:hidden;"><img src="images/i_processing.gif" width="11" height="17" align="absmiddle" hspace="3">Processing...</SPAN></td>
387
         <td>&nbsp;</td>
388
      </tr>
389
   </table>
119 ghuddy 390
<%End If%>
145 ghuddy 391
<%'Response.write "TOTAL TIME: "&  Timer - tempTimer%>