Subversion Repositories DevTools

Rev

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