Subversion Repositories DevTools

Rev

Rev 119 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 119 Rev 129
Line 1... Line 1...
1
<%@LANGUAGE="VBSCRIPT"%>
1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
2
<%
3
'=====================================================
3
'=====================================================
4
'|                                                   |
4
'|                                                   |
5
'|				    	Edit Project View Details    |
5
'|                   Edit Project View Details    |
6
'|                                                   |
6
'|                                                   |
7
'=====================================================
7
'=====================================================
8
%>
8
%>
9
<%
9
<%
10
Option explicit
10
Option explicit
11
' Good idea to set when using redirect
11
' Good idea to set when using redirect
12
Response.Expires = 0	' always load the page, dont store
12
Response.Expires = 0   ' always load the page, dont store
13
%>
13
%>
14
<!--#include file="common/conf.asp"-->
14
<!--#include file="common/conf.asp"-->
15
<!--#include file="common/globals.asp"-->
15
<!--#include file="common/globals.asp"-->
16
<!--#include file="common/formating.asp"-->
16
<!--#include file="common/formating.asp"-->
17
<!--#include file="common/qstr.asp"-->
17
<!--#include file="common/qstr.asp"-->
Line 35... Line 35...
35
Dim rsQry
35
Dim rsQry
36
Dim parRtagId
36
Dim parRtagId
37
Dim parSourceRtagId
37
Dim parSourceRtagId
38
Dim query_string
38
Dim query_string
39
Dim objBtnControl
39
Dim objBtnControl
40
Dim	rcon_id
40
Dim   rcon_id
41
'------------ Constants Declaration -----------
41
'------------ Constants Declaration -----------
42
'------------ Variable Init -------------------
42
'------------ Variable Init -------------------
43
parRtagId = Request("rtag_id")
43
parRtagId = Request("rtag_id")
44
objPMod.PersistInQryString("rtag_id")
44
objPMod.PersistInQryString("rtag_id")
45
Set objBtnControl = New ActionButtonControl
45
Set objBtnControl = New ActionButtonControl
46
'----------------------------------------------
46
'----------------------------------------------
47
%>
47
%>
48
<%
48
<%
49
'--------------------------------------------------------------------------------------------------------------------------
49
'--------------------------------------------------------------------------------------------------------------------------
50
Sub GetFormDetails ( parRtagId, ByRef outobjDetails )
50
Sub GetFormDetails ( parRtagId, ByRef outobjDetails )
51
	Dim rsQry, query
51
   Dim rsQry, query
52
	
52
 
53
	
53
 
54
	OraDatabase.Parameters.Add "RTAG_ID", 	parRtagId,		ORAPARM_INPUT, ORATYPE_NUMBER 
54
   OraDatabase.Parameters.Add "RTAG_ID",    parRtagId,      ORAPARM_INPUT, ORATYPE_NUMBER
55
	
55
 
56
	query = _
56
   query = _
57
	" SELECT * "&_
57
   " SELECT * "&_
58
	"  FROM RELEASE_TAGS rt"&_
58
   "  FROM RELEASE_TAGS rt"&_
59
	" WHERE rt.RTAG_ID = :RTAG_ID"
59
   " WHERE rt.RTAG_ID = :RTAG_ID"
60
	
60
 
61
	Set rsQry = OraDatabase.DbCreateDynaset( query, ORADYN_DEFAULT )
61
   Set rsQry = OraDatabase.DbCreateDynaset( query, ORADYN_DEFAULT )
62
	
62
 
63
	OraDatabase.Parameters.Remove "RTAG_ID"
63
   OraDatabase.Parameters.Remove "RTAG_ID"
64
	
64
 
65
	
65
 
66
	
66
 
67
	If rsQry.RecordCount > 0 Then
67
   If rsQry.RecordCount > 0 Then
68
		outobjDetails.Item ("rtag_id") = rsQry("rtag_id")
68
      outobjDetails.Item ("rtag_id") = rsQry("rtag_id")
69
		outobjDetails.Item ("rtag_name") = rsQry("rtag_name")
69
      outobjDetails.Item ("rtag_name") = rsQry("rtag_name")
70
		'outobjDetails.Item ("description") = rsQry("description")
70
      'outobjDetails.Item ("description") = rsQry("description")
71
		'outobjDetails.Item ("parent_rtag_id") = rsQry("parent_rtag_id")
71
      'outobjDetails.Item ("parent_rtag_id") = rsQry("parent_rtag_id")
72
		'outobjDetails.Item ("config_spec_branch") = rsQry("config_spec_branch")
72
      'outobjDetails.Item ("config_spec_branch") = rsQry("config_spec_branch")
73
		'outobjDetails.Item ("owner_email") = rsQry("owner_email")
73
      'outobjDetails.Item ("owner_email") = rsQry("owner_email")
74
		'If rsQry("assoc_mass_ref") <> "" Then
74
      'If rsQry("assoc_mass_ref") <> "" Then
75
		'outobjDetails.Item ("massref_rtag_id") = rsQry("assoc_mass_ref")
75
      'outobjDetails.Item ("massref_rtag_id") = rsQry("assoc_mass_ref")
76
		'End If
76
      'End If
77
	Else
77
   Else
78
		Err.Raise 8, "Sub GetFormDetails in "& ScriptName, "Empty record set returned. parRtagId="& parRtagId
78
      Err.Raise 8, "Sub GetFormDetails in "& ScriptName, "Empty record set returned. parRtagId="& parRtagId
79
		
79
 
80
	End If
80
   End If
81
	
81
 
82
	
82
 
83
	rsQry.Close
83
   rsQry.Close
84
	Set rsQry = Nothing
84
   Set rsQry = Nothing
85
End Sub
85
End Sub
86
'--------------------------------------------------------------------------------------------------------------------------
86
'--------------------------------------------------------------------------------------------------------------------------
87
Sub DeleteDaemon(rcon_id_list)
87
Sub DeleteDaemon(rcon_id_list)
88
 
88
 
89
	objEH.Try()
-
 
90
		
-
 
91
	OraDatabase.Parameters.Add "RCON_ID_LIST",	rcon_id_list, 	ORAPARM_INPUT, ORATYPE_VARCHAR2 
89
   OraDatabase.Parameters.Add "RCON_ID_LIST",   rcon_id_list,    ORAPARM_INPUT, ORATYPE_VARCHAR2
92
		
90
 
93
	OraSession.BeginTrans
91
   On Error Resume Next
-
 
92
   objEH.TryORA()
94
		
93
 
95
	OraDatabase.ExecuteSQL _
94
   OraDatabase.ExecuteSQL _
96
	"BEGIN  PK_BUILDAPI.DELETE_DAEMON(:RCON_ID_LIST);  END;"	
95
   "BEGIN  PK_BUILDAPI.DELETE_DAEMON(:RCON_ID_LIST);  END;"
97
	OraSession.CommitTrans
-
 
98
		
96
 
99
	objEH.Catch()
97
   objEH.CatchORA ( OraSession )
100
	OraDatabase.Parameters.Remove "RCON_ID_LIST"
-
 
101
 
98
 
-
 
99
   OraDatabase.Parameters.Remove "RCON_ID_LIST"
102
End Sub
100
End Sub
103
'--------------------------------------------------------------------------------------------------------------------------
101
'--------------------------------------------------------------------------------------------------------------------------
104
%>
102
%>
105
<%
103
<%
106
'------------ RUN BEFORE PAGE RENDER ----------
104
'------------ RUN BEFORE PAGE RENDER ----------
107
' --- Get Form details from DB ---
105
' --- Get Form details from DB ---
108
Call GetFormDetails ( Request("rtag_id"), objFormCollector )
106
Call GetFormDetails ( Request("rtag_id"), objFormCollector )
109
 
107
 
110
' --- Load Validation Rules ---
108
' --- Load Validation Rules ---
111
'Call objForm.LoadValidationRules ( Array("rtag_name","rtag_description", "config_spec_branch"), OraDatabase )		' Load Validation Rules
109
'Call objForm.LoadValidationRules ( Array("rtag_name","rtag_description", "config_spec_branch"), OraDatabase )      ' Load Validation Rules
112
 
110
 
113
' --- Enter Form Validation Rule Changes here... ----
111
' --- Enter Form Validation Rule Changes here... ----
114
'----------------------------------------------------
112
'----------------------------------------------------
115
 
113
 
116
' --- RUN onPostBack ---
114
' --- RUN onPostBack ---
117
If Request("action") <> "" Then
115
If Request("action") <> "" Then
118
	If objForm.IsValidOnPostBack Then
116
   If objForm.IsValidOnPostBack Then
119
		
117
 
120
		Call DeleteDaemon(Request("rcon_id_list"))
118
      Call DeleteDaemon(Request("rcon_id_list"))
121
		
119
 
122
		If objEH.Finally Then
120
      If objEH.Finally Then
123
			Call OpenInWindow ( "release_config.asp?rtag_id="& parRtagId )
121
         Call OpenInWindow ( "release_config.asp?rtag_id="& parRtagId )
124
		End If
122
      End If
125
		
123
 
126
	End If
124
   End If
127
	
125
 
128
End If
126
End If
129
 
127
 
130
'----------------------------------------------
128
'----------------------------------------------
131
%>
129
%>
132
 
130
 
Line 146... Line 144...
146
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
144
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
147
 
145
 
148
</head>
146
</head>
149
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
147
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
150
<!-- MENU LAYERS -------------------------------------->
148
<!-- MENU LAYERS -------------------------------------->
151
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"> 
149
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)">
152
</div>
150
</div>
153
<!-- TIPS LAYERS -------------------------------------->
151
<!-- TIPS LAYERS -------------------------------------->
154
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
152
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
155
<!----------------------------------------------------->
153
<!----------------------------------------------------->
156
<!-- HEADER -->
154
<!-- HEADER -->
Line 162... Line 160...
162
'-- FROM START ---------------------------------------------------------------------------------------------------------
160
'-- FROM START ---------------------------------------------------------------------------------------------------------
163
objFormComponent.FormName = "FormName"
161
objFormComponent.FormName = "FormName"
164
objFormComponent.Action = ScriptName
162
objFormComponent.Action = ScriptName
165
Call objFormComponent.FormStart()
163
Call objFormComponent.FormStart()
166
%>
164
%>
167
  <tr> 
165
  <tr>
168
    <td width="1" background="images/bg_home_orange.gif" valign="top">
166
    <td width="1" background="images/bg_home_orange.gif" valign="top">
169
	</td>
167
   </td>
170
	<td width="100%" rowspan="2" align="center" valign="top" bgcolor="#EEEFEF"><table width="10" border="0" cellspacing="0" cellpadding="0">
168
   <td width="100%" rowspan="2" align="center" valign="top" bgcolor="#EEEFEF"><table width="10" border="0" cellspacing="0" cellpadding="0">
171
      <tr>
169
      <tr>
172
        <td width="1%"></td>
170
        <td width="1%"></td>
173
        <td width="100%">
171
        <td width="100%">
174
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
172
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
175
            <tr>
173
            <tr>
176
              <td nowrap class="body_txt">
174
              <td nowrap class="body_txt">
177
 
175
 
178
			  </td>
-
 
179
             
176
           </td>
-
 
177
 
180
            </tr>
178
            </tr>
181
          </table>
179
          </table>
182
          <table width="100%" border="0" cellspacing="0" cellpadding="0">
180
          <table width="100%" border="0" cellspacing="0" cellpadding="0">
183
            <tr>
181
            <tr>
184
              <td nowrap class="form_ttl"><p>&nbsp;</p>
182
              <td nowrap class="form_ttl"><p>&nbsp;</p>
Line 194... Line 192...
194
        <td align="right" valign="top"  background="images/lbox_bg_blue.gif"><img src="images/lbox_tr_cnr_b.gif" width="13" height="13"></td>
192
        <td align="right" valign="top"  background="images/lbox_bg_blue.gif"><img src="images/lbox_tr_cnr_b.gif" width="13" height="13"></td>
195
      </tr>
193
      </tr>
196
      <tr>
194
      <tr>
197
        <td bgcolor="#FFFFFF"><img src="images/h_trsp_dot.gif" width="10" height="100"></td>
195
        <td bgcolor="#FFFFFF"><img src="images/h_trsp_dot.gif" width="10" height="100"></td>
198
        <td bgcolor="#FFFFFF" valign="top">
196
        <td bgcolor="#FFFFFF" valign="top">
199
		<!-- MESSAGE +++++++++++++++++++++++++++++++++++++++++++++++++++ -->	
197
      <!-- MESSAGE +++++++++++++++++++++++++++++++++++++++++++++++++++ -->
200
		<!--#include file="messages/_msg_inline.asp"-->
198
      <!--#include file="messages/_msg_inline.asp"-->
201
		<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
199
      <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
202
		<br>
200
      <br>
203
		<!-- BUTTONS CONTROL +++++++++++++++++++ -->
201
      <!-- BUTTONS CONTROL +++++++++++++++++++ -->
204
		<%Call Action_Buttons ( "Add Daemon" )
202
      <%Call Action_Buttons ( "Add Daemon" )
205
		
203
 
206
		 ' Load some action buttons
204
       ' Load some action buttons
207
		 Call objBtnControl.LoadActionButtons ( Array("btnEditDaemon", "btnDeleteDaemon"), OraDatabase )
205
       Call objBtnControl.LoadActionButtons ( Array("btnEditDaemon", "btnDeleteDaemon"), OraDatabase )
208
		 objBtnControl.ButtonSpacer = 1
206
       objBtnControl.ButtonSpacer = 1
209
		
207
 
210
		%>
208
      %>
211
		
209
 
212
		<!-- +++++++++++++++++++++++++++++++++++ -->		
210
      <!-- +++++++++++++++++++++++++++++++++++ -->
213
 
211
 
214
		<table width="100%"  border="0" cellspacing="2" cellpadding="0">    
212
      <table width="100%"  border="0" cellspacing="2" cellpadding="0">
215
			</td>
213
         </td>
216
			<td width="9%" valign="top"></td>
214
         <td width="9%" valign="top"></td>
217
		  </tr>
215
        </tr>
218
		  		  <tr>
216
                <tr>
219
			<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col"></td>				  
217
         <td valign="top" nowrap background="images/bg_table_col.gif" class="body_col"></td>
220
			<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">DAEMON HOSTNAME</td>
218
         <td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">DAEMON HOSTNAME</td>
221
			<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">DAEMON MODE</td>
219
         <td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">DAEMON MODE</td>
222
			<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">GBE_MACHTYPE</td>
220
         <td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">GBE_MACHTYPE</td>
223
			<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">GBE_BUILDFILTER</td>
221
         <td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">GBE_BUILDFILTER</td>
224
			<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">ACTION</td>
222
         <td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">ACTION</td>
225
			<td valign="top">
223
         <td valign="top">
226
		  </tr>
224
        </tr>
227
			<%
225
         <%
228
			query_string = "select * from release_config rc, gbe_machtype gbe "&_
226
         query_string = "select * from release_config rc, gbe_machtype gbe "&_
229
			" where rc.rtag_id = "& parRtagId &" and gbe.gbe_id = rc.gbe_id order by daemon_mode"
227
         " where rc.rtag_id = "& parRtagId &" and gbe.gbe_id = rc.gbe_id order by daemon_mode"
230
			Set rsQry = OraDatabase.DbCreateDynaset( query_string, ORADYN_DEFAULT )
228
         Set rsQry = OraDatabase.DbCreateDynaset( query_string, ORADYN_DEFAULT )
231
			
229
 
232
			Dim daemon_mode, daemon
230
         Dim daemon_mode, daemon
233
			
231
 
234
			'--- Render rows ---
232
         '--- Render rows ---
235
			 Do While (NOT rsQry.BOF) AND (NOT rsQry.EOF)
233
          Do While (NOT rsQry.BOF) AND (NOT rsQry.EOF)
236
			rcon_id = rsQry("rcon_id")
234
         rcon_id = rsQry("rcon_id")
237
			daemon	=	rsQry("daemon_hostname")
235
         daemon   =   rsQry("daemon_hostname")
238
 
236
 
239
			 If rsQry("daemon_mode") = "M" Then
237
          If rsQry("daemon_mode") = "M" Then
240
				daemon_mode = "MASTER"
238
            daemon_mode = "MASTER"
241
			 Else
239
          Else
242
				daemon_mode = "SLAVE"
240
            daemon_mode = "SLAVE"
243
			 End If
241
          End If
-
 
242
 
244
 
243
 
245
				
-
 
246
			%>
244
         %>
247
      <tr>
245
      <tr>
248
        <td colspan="5" background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
246
        <td colspan="5" background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
249
      </tr>	  			
247
      </tr>
250
		 <tr>
248
       <tr>
251
		<%If rsQry("daemon_mode") = "M" AND rsQry.RecordCount <> 1 Then%>
249
      <%If rsQry("daemon_mode") = "M" AND rsQry.RecordCount <> 1 Then%>
252
		 <td align="center"><input type="checkbox" name="rcon_id_list" value="<%=rsQry("rcon_id")%>" disabled></td>
250
       <td align="center"><input type="checkbox" name="rcon_id_list" value="<%=rsQry("rcon_id")%>" disabled></td>
253
		<%Else%>
251
      <%Else%>
254
		 <td align="center"><input type="checkbox" name="rcon_id_list" value="<%=rsQry("rcon_id")%>"></td>
252
       <td align="center"><input type="checkbox" name="rcon_id_list" value="<%=rsQry("rcon_id")%>"></td>
255
		<%End If%>
253
      <%End If%>
256
		 <td nowrap class="body_rowg"><%=rsQry("daemon_hostname")%></td>
254
       <td nowrap class="body_rowg"><%=rsQry("daemon_hostname")%></td>
257
		 <td nowrap class="body_rowg"><%=daemon_mode%></td>
255
       <td nowrap class="body_rowg"><%=daemon_mode%></td>
258
		 <td nowrap class="body_rowg"><%=rsQry("gbe_value")%></td>
256
       <td nowrap class="body_rowg"><%=rsQry("gbe_value")%></td>
259
		 <td nowrap class="body_rowg"><%=rsQry("gbe_buildfilter")%></td>
257
       <td nowrap class="body_rowg"><%=rsQry("gbe_buildfilter")%></td>
260
		 <td nowrap class="body_rowg"><%Call objBtnControl.Render  ( Array("btnEditDaemon", "btnDeleteDaemon"), objAccessControl )%></td>
258
       <td nowrap class="body_rowg"><%Call objBtnControl.Render  ( Array("btnEditDaemon", "btnDeleteDaemon"), objAccessControl )%></td>
261
		 </tr>
259
       </tr>
262
		 <%
260
       <%
263
		 	rsQry.MoveNext
261
          rsQry.MoveNext
264
		 Loop	
262
       Loop
265
		 		rsQry.Close()
263
             rsQry.Close()
266
				Set rsQry = nothing	
264
            Set rsQry = nothing
267
		  %>		  
-
 
268
		  
-
 
269
		  
-
 
270
 
-
 
271
		  <tr>
-
 
272
		    <td class="form_iname">&nbsp;</td>
-
 
273
		    <td>&nbsp;</td>
-
 
274
		    <td class="val_err"></td>
-
 
275
		    </tr>
265
        %>
276
		</table>
-
 
277
 
266
 
-
 
267
 
278
		
268
 
-
 
269
        <tr>
-
 
270
          <td class="form_iname">&nbsp;</td>
-
 
271
          <td>&nbsp;</td>
-
 
272
          <td class="val_err"></td>
-
 
273
          </tr>
-
 
274
      </table>
-
 
275
 
-
 
276
 
279
		</td>
277
      </td>
280
        <td background="images/lbox_bgside_white.gif">&nbsp;</td>
278
        <td background="images/lbox_bgside_white.gif">&nbsp;</td>
281
      </tr>
279
      </tr>
282
	  <tr>
280
     <tr>
283
        <td background="images/bg_action_norm.gif" ></td>
281
        <td background="images/bg_action_norm.gif" ></td>
284
        <td align="right" background="images/bg_action_norm.gif" >
282
        <td align="right" background="images/bg_action_norm.gif" >
285
 
283
 
286
		<%=objFormComponent.CancelButton ( "OK", "class='form_btn'", "dependencies.asp?rtag_id="& parRtagId )%>
284
      <%=objFormComponent.CancelButton ( "OK", "class='form_btn'", "dependencies.asp?rtag_id="& parRtagId )%>
287
		<%=objPMod.ComposeHiddenTags()%>
285
      <%=objPMod.ComposeHiddenTags()%>
288
		<%If objAccessControl.IsActive("AdminView") Then%>
286
      <%If objAccessControl.IsActive("AdminView") Then%>
289
		<input name="btn" type="submit" class="form_btn" value="Delete">
287
      <input name="btn" type="submit" class="form_btn" value="Delete">
290
		<%End If%>
288
      <%End If%>
291
		<input type="hidden" name="rcon_id_list" value="<%=Request("rcon_id_list")%>">
289
      <input type="hidden" name="rcon_id_list" value="<%=Request("rcon_id_list")%>">
292
		<input type="hidden" name="action" value="true">
290
      <input type="hidden" name="action" value="true">
293
		</td>
291
      </td>
294
        <td background="images/bg_action_norm.gif" ><img src="images/h_trsp_dot.gif" width="5" height="30"></td>
292
        <td background="images/bg_action_norm.gif" ><img src="images/h_trsp_dot.gif" width="5" height="30"></td>
295
      </tr>
293
      </tr>
296
      <tr>
294
      <tr>
297
        <td background="images/lbox_bg_blue.gif" valign="bottom"><img src="images/lbox_bl_cnr_b.gif" width="13" height="13"></td>
295
        <td background="images/lbox_bg_blue.gif" valign="bottom"><img src="images/lbox_bl_cnr_b.gif" width="13" height="13"></td>
298
        <td background="images/lbox_bg_blue.gif"></td>
296
        <td background="images/lbox_bg_blue.gif"></td>
299
        <td background="images/lbox_bg_blue.gif" valign="bottom" align="right"><img src="images/lbox_br_cnr_b.gif" width="13" height="13"></td>
297
        <td background="images/lbox_bg_blue.gif" valign="bottom" align="right"><img src="images/lbox_br_cnr_b.gif" width="13" height="13"></td>
300
      </tr>
298
      </tr>
301
    </table>
299
    </table>
302
	
300
 
303
	<!-- ACTION BUTTONS ---------------------------------------------->
301
   <!-- ACTION BUTTONS ---------------------------------------------->
304
	<!-- ACTION BUTTONS END  ------------------------------------------></td>
302
   <!-- ACTION BUTTONS END  ------------------------------------------></td>
305
	<td width="1" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
303
   <td width="1" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
306
  </tr>
304
  </tr>
307
  <tr> 
305
  <tr>
308
    <td valign="bottom" align="center" background="images/bg_home_orange.gif"><img src="images/img_vtree.gif" width="86" height="99" vspace="20" hspace="30"></td>
306
    <td valign="bottom" align="center" background="images/bg_home_orange.gif"><img src="images/img_vtree.gif" width="86" height="99" vspace="20" hspace="30"></td>
309
    <td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
307
    <td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
310
  </tr>
308
  </tr>
311
<%
309
<%
312
Call objFormComponent.FormEnd()
310
Call objFormComponent.FormEnd()
313
'-- FROM END ----------------------------------------------------------------------------------------------------------------
311
'-- FROM END ----------------------------------------------------------------------------------------------------------------
314
%>   
312
%>
315
</table>
313
</table>
316
 
314
 
317
 
315
 
318
<!-- FOOTER -->
316
<!-- FOOTER -->
319
<!--#include file="_footer.asp"-->
317
<!--#include file="_footer.asp"-->
320
</body>
318
</body>
321
</html>
319
</html>
322
<%
320
<%
323
Call Destroy_All_Objects
321
Call Destroy_All_Objects
324
%>
-
 
325
322
%>
-
 
323