Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

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