Question : keep table at base of page

On this page:
http://www.glowfishtw.com/TOD/content/Project%20Network%20Help%20&%20FAQ%20–%20McGraw-Hill%20Construction.asp

There is a box in the left hand column with the text "Got a Question and can't
find the Answer?" I am trying to get this text to stay at the bottom of the page no matter the vertical size. The vertical size of this page will change when users open and close the tree menu items in the center. I am trying to make sure that the image of the film etc. stays at the top, but the table "Got a Question......?" stays at the bottom. Any ideas how I might accomplish this?

Thanks.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!--#include file="../Connections/OnDemand.asp" -->

<%
Dim rscategories
Dim rscategories_cmd
Dim rscategories_numRows

Set rscategories_cmd = Server.CreateObject ("ADODB.Command")
rscategories_cmd.ActiveConnection = MM_OnDemand_STRING
rscategories_cmd.CommandText = "SELECT * FROM categories" 
rscategories_cmd.Prepared = true

Set rscategories = rscategories_cmd.Execute
rscategories_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index

Repeat1__numRows = -1
Repeat1__index = 0
rscategories_numRows = rscategories_numRows + Repeat1__numRows
%>
<%
Dim rsvideo
Dim rsvideo_cmd
Dim rsvideo_numRows
Dim catvar
%>

<%
Sub varnode()

catvar = (rscategories.Fields.Item("catID").Value)

Set rsvideo_cmd = Server.CreateObject ("ADODB.Command")
rsvideo_cmd.ActiveConnection = MM_OnDemand_STRING
rsvideo_cmd.CommandText = "SELECT * FROM videos WHERE videocategory=" & catvar 
rsvideo_cmd.Prepared = true

Set rsvideo = rsvideo_cmd.Execute

Dim extvar

Do While Not rsvideo.Eof
extvar = rsvideo.Fields.Item("videoextension").Value
response.write ("<li>")
response.write ("<div class=list_elements>")
response.write ("<a ID=""sizex"" href=""")
response.write (rsvideo.Fields.Item("videolink").Value)
response.write (""" class=""bumpbox"" title=""")
response.write (rsvideo.Fields.Item("vidoename").Value)
response.write (""" rel=""862-624"">")
response.write (rsvideo.Fields.Item("vidoename").Value)
response.write ("</a>")
If (extvar = "SWF") then
response.write ("&nbsp;<img src=""images/flash_sm.gif"">")
ElseIf (extvar = "PDF") then
response.write ("&nbsp;<img src=""images/pdf_logo.jpg"">")
ElseIf (extvar = "FLV") then
response.write ("&nbsp;<img src=""images/movie_logo.jpg"">")
ElseIf (extvar = "JPG") then
response.write ("&nbsp;<img src=""images/jpg_logo.jpg"">")
ElseIf (extvar = "PEG") then
response.write ("&nbsp;<img src=""images/jpg_logo.jpg"">")
ElseIf (extvar = "MP3") then
response.write ("&nbsp;<img src=""images/audio_logo.jpg"">")
End if
response.write ("</div>")
response.write ("<div class=""description_format"">")
response.write (rsvideo.Fields.Item("videodescription").Value)
response.write ("</div>")
response.write ("</li>")
rsvideo.MoveNext()
Loop

End Sub

rsvideo_numRows = 0
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<!-- saved from url=(0053)http://www.construction.com/network/trainingondemand/ -->
<HTML xmlns="http://www.w3.org/1999/xhtml">
<HEAD>

		<!-- Start expandable tree menu include -->
<script type="text/javascript" src="../simpletreemenu.js"></script>
<link rel="stylesheet" type="text/css" href="../simpletree.css" />
		<!-- End expandable tree menu include -->
        <!-- Start BumpBox HEAD section -->
<script  type="text/ecmascript" src="../mootools.js"></script>
<script  type="text/ecmascript" src="../flowplayer.min.js"></script>
<script  type="text/ecmascript" src="../bumpbox.js"></script>
		<!-- End BumpBox HEAD section -->

<TITLE>Project Network Help & FAQ &ndash; McGraw-Hill Construction</TITLE>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META 
content="The McGraw-Hill Construction Project Network help and FAQ. Find answers to Project Network questions by using the McGraw-Hill Construction Project Network FAQ or the Help Topics." 
name=description>
<META 
content="mcgraw hill project network help, mcgraw hill project network faq, mcgraw hill project network, project network help, faq, frequently asked questions, help topics, technical support, mcgraw hill construction&#13;&#10;" 
name=keywords>

<STYLE type=text/css>
BODY {
	MARGIN: 0px
}
</STYLE>
<LINK 
href="../Project Network Help & FAQ – McGraw-Hill Construction_files/NetworkHelp.css" 
type=text/css rel=stylesheet>
<META content="MSHTML 6.00.6000.16981" name=GENERATOR>
<style type="text/css">
<!--
.style1 {
	font-size: 24px;
	font-weight: bold;
	color: #000000;
}
-->
</style>

		<!-- Determine user screen resolution -->
<script type="text/javascript">
var screenw;
var screenh;
var screenrel;
screenw = screen.availWidth;
screenh = screen.availHeight;
screenw = (screenw/1.5);
screenh = (screenh/1.5);
screenw = (Math.round(screenw));
screenh = (Math.round(screenh));
screenrel = (screenw + "-" + screenh);
screenrel = (1200-800)
//var anchors = document.getElementsByClassName("bumpbox");
</script> 
		<!--  End screen resolution -->

</HEAD>
<BODY onLoad="init();">
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
  <TBODY>
  <TR id=gradient>
    <TD colSpan=3>
      <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
        <TBODY>
        <TR>
          <TD width="20%">
            <DIV align=center><A class=maincontent 
            onmouseover="MM_swapImage('Image9','','/help/NetworkHelp/images/TopSites_dodge_on.gif',1)" 
            onmouseout=MM_swapImgRestore() href="http://dodge.construction.com/" 
            target=_blank><IMG id=Image9 alt="McGraw-Hill Dodge" 
            src="../Project Network Help & FAQ – McGraw-Hill Construction_files/TopSites_dodge.gif" 
            border=0 name=Image9></A></DIV></TD>
          <TD width="20%">
            <DIV align=center><A class=maincontent 
            onmouseover="MM_swapImage('Image6','','/help/NetworkHelp/images/TopSites_Network_on.gif',1)" 
            onmouseout=MM_swapImgRestore() 
            href="http://network.construction.com/" target=_blank><IMG id=Image6 
            alt="McGraw-Hill Construction Network" 
            src="../Project Network Help & FAQ – McGraw-Hill Construction_files/TopSites_Network.gif" 
            border=0 name=Image6></A></DIV></TD>
          <TD width="20%">
            <DIV align=center><A class=maincontent 
            onmouseover="MM_swapImage('Image7','','/help/NetworkHelp/images/TopSites_Sweets_on.gif',1)" 
            onmouseout=MM_swapImgRestore() 
            href="http://products.construction.com/" target=_blank><IMG 
            id=Image7 alt="McGraw-Hill Construction Sweets" 
            src="../Project Network Help & FAQ – McGraw-Hill Construction_files/TopSites_Sweets.gif" 
            border=0 name=Image7></A></DIV></TD>
          <TD width="20%">
            <DIV align=center><A class=maincontent 
            onmouseover="MM_swapImage('Image8','','/help/NetworkHelp/images/TopSites_PDM_on.gif',1)" 
            onmouseout=MM_swapImgRestore() href="http://pdm.construction.com/" 
            target=_blank><IMG id=Image8 alt="Project Document Manager" 
            src="../Project Network Help & FAQ – McGraw-Hill Construction_files/TopSites_PDM.gif" 
            border=0 name=Image8></A></DIV></TD>
          <TD width="20%">
            <DIV align=center><A class=maincontent 
            onmouseover="MM_swapImage('Image5','','/help/NetworkHelp/images/TopSites_MHC_on.gif',0)" 
            onmouseout=MM_swapImgRestore() href="http://www.construction.com/" 
            target=_blank><IMG id=Image5 alt="McGraw-Hill Construction" 
            src="../Project Network Help & FAQ – McGraw-Hill Construction_files/TopSites_MHC.gif" 
            border=0 name=Image5></A></DIV></TD></TR></TBODY></TABLE></TD></TR>
  <TR id=grayLine>
    <TD bgColor=#cccccc colSpan=3 height=1><IMG height=1 
      src="../Project Network Help & FAQ – McGraw-Hill Construction_files/_.gif" 
      width=1></TD></TR>
  <TR>
    <TD colSpan=3 height=2><IMG height=2 
      src="../Project Network Help & FAQ – McGraw-Hill Construction_files/_.gif" 
      width=15></TD></TR>
  <TR>
  <TR>
    <TD width=25 rowSpan=2><IMG height=4 
      src="../Project Network Help & FAQ – McGraw-Hill Construction_files/_.gif" 
      width=15></TD>
    <TD id=logo width=332 rowSpan=2><A class=maincontent 
      href="http://www.construction.com/help/NetworkHelp/defaultmain.asp"><IMG 
      src="../Project Network Help & FAQ – McGraw-Hill Construction_files/logo_helpCenter.gif" 
      border=0></A></TD>
    <TD vAlign=top align=right>
      <DIV id=signIn><SPAN class=maincontent>
      <SCRIPT language=javascript>
      if (isAuthenticated) {
        document.writeln("Welcome " + userName );
      }
      else{
        document.writeln("<a href='https://sso.construction.com/SingleSignOn/Login.aspx?Register=1' class='maincontent' target='_top'>Register now</a> or ");
        //document.writeln("Welcome to McGraw-Hill Construction!");
      }
      </SCRIPT>
      </SPAN>&nbsp;&nbsp;
      <SCRIPT 
      language=javascript>writeButton(document.URL,document.URL,"_self")</SCRIPT>
      &nbsp;</DIV></TD></TR>
  <TR>
    <TD style="PADDING-RIGHT: 5px; PADDING-TOP: 5px" vAlign=bottom 
      align=right>
      <FORM id=cse-search-box 
      action=/help/networkhelp/searchresults.asp>
      <TABLE 
      style="BORDER-RIGHT: #ffaa72 1px solid; BORDER-TOP: #ffaa72 1px solid; BORDER-LEFT: #ffaa72 1px solid; BORDER-BOTTOM: #ffaa72 1px solid" 
      cellSpacing=0 cellPadding=5 width=250 bgColor=#fdecd4 border=0>
        <TBODY>
        <TR>
          <TD class=maincontent noWrap align=right><B>search help:</B></TD>
          <TD><INPUT type=hidden value=003486722983476972806:fhmug5awzai 
            name=cx> <INPUT type=hidden value=FORID:11 name=cof> <INPUT 
            type=hidden value=UTF-8 name=ie> <INPUT id=textidsm name=q 
            width="200"></TD>
          <TD><INPUT type=image alt="Submit button" 
            src="../Project Network Help & FAQ – McGraw-Hill Construction_files/btn_goOR.gif" 
            name=sa></TD></TR></TBODY></TABLE></FORM></TD></TR>
  <TR>
    <TD id=topNav colSpan=3>
      <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
        <TBODY>
        <TR>
          <TD class=topNav align=middle width=150 height=20><A class=topNav 
            href="http://www.construction.com/help/NetworkHelp/default.asp">ONLINE 
            USER GUIDE </A></TD>
          <TD class=topNav vAlign=center align=middle width=20>|</TD>
          <TD class=topNav align=left width=150><A class=topNav 
            href="http://www.construction.com/Network/TrainingOnDemand/default.asp">TRAINING 
            ON DEMAND </A></TD>
          <TD class=topNav vAlign=center align=middle width=20>|</TD>
          <TD class=topNav align=left width=200><A class=topNav 
            href="http://www.construction.com/help/networkhelp/default.asp">FREQUENTLY 
            ASKED QUESTIONS</A></TD>
          <TD class=topNav vAlign=center align=middle width=20>|</TD>
          <TD class=topNav align=left width=120><A class=topNav 
            href="http://construction.com/community/forums.aspx?plckForumPage=Forum&amp;plckForumId=Cat%3a2e6c9931-f43f-406f-9d34-ab5a581212e6Forum%3a593df509-8be7-4e8f-b3f9-7cde81eadeed&amp;plckNumPerPage=200&amp;plckCategoryCurrentPage=0">SUPPORT 
            FORUMS </A></TD>
          <TD class=topNav vAlign=center align=middle width=20>|</TD>
          <TD class=topNav align=left width=120><A class=topNav 
            href="http://www.construction.com/help/PDMHelp/default.asp">PDM HELP 
            CENTER </A></TD>
          <TD class=topNav vAlign=center align=middle width=20>|</TD>
          <TD class=topNav align=left width=139><A class=topNav 
            href="http://www.construction.com/help/PDM/tutorial/default.asp">PDM 
            TRAINING CENTER </A></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<TABLE class=grayBorderALL cellSpacing=0 cellPadding=0 width=990 border=0>
  <TBODY>
  <TR>
    <TD width=250 rowSpan=2 align="center" 
    vAlign=top 
    style="PADDING-RIGHT: 5px; PADDING-LEFT: 0px; PADDING-BOTTOM: 5px; PADDING-TOP: 0px"><img src="../images/TOD_graphic.jpg" width="321" height="414" align="top"> <br>
      <TABLE width=240 border=0 align="center" cellPadding=0 cellSpacing=0 bgColor=#ffffff>
        <TBODY>
          <TR>
            <TD width=10 height=10><IMG 
            src="../Project Network Help & FAQ &ndash; McGraw-Hill Construction_files/tableCornerGray_topleft.gif" alt="spacer" 
            width=10 height=10></TD>
            <TD style="BORDER-TOP: #adadba 1px solid"><IMG 
            src="../Project Network Help & FAQ &ndash; McGraw-Hill Construction_files/_.gif" alt="spacer" 
            width=1 height=1></TD>
            <TD width=10 height=10><IMG 
            src="../Project Network Help & FAQ &ndash; McGraw-Hill Construction_files/tableCornerGray_topRight.gif" alt="spacer" 
            width=10 height=10></TD>
          </TR>
          <TR>
            <TD style="BORDER-LEFT: #adadba 1px solid"><IMG 
            src="../Project Network Help & FAQ &ndash; McGraw-Hill Construction_files/_.gif" alt="spacer" 
            width=1 height=1></TD>
            <TD><TABLE cellSpacing=5 width="100%" border=0>
                <TBODY>
                  <TR>
                    <TD class=button align=middle>Got a Question and can't <BR>
                      find the Answer?</TD>
                  </TR>
                  <TR>
                    <TD noWrap bgColor=#ffffff><P 
                  style="FONT-SIZE: 12px; COLOR: #333333; FONT-FAMILY: Arial, Helvetica, sans-serif"><A 
                  style="FONT-SIZE: 12px; COLOR: #336699; FONT-FAMILY: Arial, Helvetica, sans-serif" 
                  href="http://construction.com/community/forums.aspx?plckForumPage=Forum&amp;plckForumId=Cat%3a2e6c9931-f43f-406f-9d34-ab5a581212e6Forum%3a593df509-8be7-4e8f-b3f9-7cde81eadeed&amp;plckNumPerPage=200&amp;plckCategoryCurrentPage=0" 
                  target=_blank>Post your question to our Help Forum</A> <BR>
                      and 
                      a Network Support member will <BR>
                      answer you within 24 - 48 
                      hours. <BR>
                                                    <BR>
                      Or <A 
                  style="FONT-SIZE: 12px; COLOR: #336699; FONT-FAMILY: Arial, Helvetica, sans-serif" 
                  href="mailto:[email protected]">Contact us with 
                        your comments</A> on<BR>
                      how we can create the best 
                      possible<BR>
                      self- help area for you. <BR>
                      We need <STRONG>your 
                        help</STRONG><BR>
                    </P></TD>
                  </TR>
                </TBODY>
            </TABLE></TD>
            <TD style="BORDER-RIGHT: #adadba 1px solid"><IMG 
            src="../Project Network Help & FAQ &ndash; McGraw-Hill Construction_files/_.gif" alt="spacer" 
            width=1 height=1></TD>
          </TR>
          <TR>
            <TD width=10 height=10><IMG 
            src="../Project Network Help & FAQ &ndash; McGraw-Hill Construction_files/tableCornerGray_botLeft.gif" alt="spacer" 
            width=10 height=10></TD>
            <TD style="BORDER-BOTTOM: #adadba 1px solid"><IMG 
            src="../Project Network Help & FAQ &ndash; McGraw-Hill Construction_files/_.gif" alt="spacer" 
            width=1 height=1></TD>
            <TD width=10 height=10><IMG 
            src="../Project Network Help & FAQ &ndash; McGraw-Hill Construction_files/tableCornerGray_botRight.gif" alt="spacer" 
            width=10 height=10></TD>
          </TR>
        </TBODY>
      </TABLE>
      </TD>
    <TD vAlign=top width=720>
      <TABLE cellSpacing=0 cellPadding=10 width="100%" border=0>
        <TBODY>
        <TR>
          <TD class=maincontent>
            <P align="left" class=LgGrayText14><img src="../images/TOD_header.jpg" width="618" height="106"><br>
				<BLOCKQUOTE>
                Welcome to McGraw-Hill Construction Network's 
            Training on Demand Library. Please choose a session below to learn 
            more about your service. 
                </P>
              
            
              <P id=top name="_top">You will need to 
              have <A class=orangeLinkUL 
              href="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" 
              target=_blank>Flash Player</A><A class=maincontent 
              href="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"> <IMG alt="Flash Player Icon" 
              src="../Project Network Help & FAQ – McGraw-Hill Construction_files/flash_sm.gif" 
              align=absMiddle border=0></A> installed before watching videos. If a yellow bar appears at the top of your browser please click it and allow the use of ActiveX controls. Some videos take a few moments to load so please be patient. </P>
              <br>
            </BLOCKQUOTE>
            <TABLE 
            style="BORDER-RIGHT: #cccccc 1px dotted; BORDER-TOP: #cccccc 1px dotted; BORDER-LEFT: #cccccc 1px dotted; BORDER-BOTTOM: #cccccc 1px dotted" 
            cellSpacing=0 cellPadding=5 width=546 align=center border=0>
              <TBODY>
              <TR>
                <TD bgColor=#ecf0f4 colSpan=2><STRONG>Session 
                Topics</STRONG></TD></TR>
              <TR>
                <TD style="LINE-HEIGHT: 22px" width=17>
                  <P><!--&#187;&nbsp;<a href="#SSO"class="maincontent">McGraw-Hill Account Login Info </a><br />--><!--&#187;&nbsp;<a href="#welcome"class="maincontent">Welcome to the Network </a><br />--><BR></P></TD>
                <TD width=507>
                <div class="computer"><img src="../images/computer.jpg"></div>
                <div class="TOD_title"><span class="style1">Browse Training on Demand</span></div>
                 
                <ul id="treemenu1" class="treeview">
                  <% 
While ((Repeat1__numRows <> 0) AND (NOT rscategories.EOF)) 
%>
    <li>
      <%=(rscategories.Fields.Item("categoryname").Value)%>
      <ul>
        <% Call varnode() %>
      </ul>
    </li>
    <% 
  Repeat1__index=Repeat1__index+1
  Repeat1__numRows=Repeat1__numRows-1
  rscategories.MoveNext()
Wend
%>
</ul>

<script type="text/javascript">
ddtreemenu.createTree("treemenu1", true, 5)
</script></TD>
              </TR></TBODY></TABLE><BR></TD></TR>
        <TR>
          <TD>
            <HR align=center width="80%" color=#ffcc00 noShade SIZE=1>          </TD></TR>
      </TBODY></TABLE></TD></TR>
  <TR>
    <TD align=middle><div align="center"><img height=64 
      src="../Project Network Help & FAQ – McGraw-Hill Construction_files/NeedHelp.jpg" 
      width=226></div></TD>
  </TR></TBODY></TABLE>
<TABLE cellSpacing=0 cellPadding=0 width=950 border=0>
  <TBODY>
  <TR>
    <TD align=middle><BR>
      <TABLE border=0 align="center" cellPadding=0 cellSpacing=0>
        <TBODY>
        <TR>
          <TD align=right rowSpan=3><IMG alt="McGraw-Hill Construction" 
            src="../Project Network Help & FAQ – McGraw-Hill Construction_files/footer_MHC.gif"></TD>
          <TD class=maincontentsm><A class=maincontentsm 
            href="http://www.construction.com/termsofuse.asp" 
            target=_blank>terms of use&nbsp;</A><SPAN 
            style="FONT-SIZE: 10px">|&nbsp;</SPAN><A class=maincontentsm 
            href="http://www.construction.com/privacypolicy.asp" 
            target=_blank>privacy policy&nbsp;</A><SPAN 
            style="FONT-SIZE: 10px">|&nbsp;</SPAN><A class=maincontentsm 
            href="http://www.construction.com/Advertise/" 
            target=_blank>advertise&nbsp;</A><SPAN 
            style="FONT-SIZE: 10px">|</SPAN><A class=maincontentsm 
            href="http://www.construction.com/AboutUs/aboutus.asp" 
            target=_blank>&nbsp;about us</A></TD></TR>
        <TR>
          <TD class=maincontentsm>Technical Support 1-800-393-6343</TD></TR>
        <TR>
          <TD class=maincontentsm>© 2009 The McGraw-Hill Companies, 
        Inc.</TD></TR></TBODY></TABLE>
      <SCRIPT language=JavaScript 
      src="../Project Network Help & FAQ – McGraw-Hill Construction_files/elqCfg.js" 
      type=text/javascript></SCRIPT>

      <SCRIPT language=JavaScript 
      src="../Project Network Help & FAQ – McGraw-Hill Construction_files/elqImg.js" 
      type=text/javascript></SCRIPT>

      <SCRIPT 
      src="../Project Network Help & FAQ – McGraw-Hill Construction_files/dcs_head.js" 
      type=text/javascript></SCRIPT>

      <SCRIPT 
      src="../Project Network Help & FAQ – McGraw-Hill Construction_files/dcs_tag.js" 
      type=text/javascript></SCRIPT>

      <SCRIPT type=text/javascript>
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</SCRIPT>

      <SCRIPT type=text/javascript>
var pageTracker = _gat._getTracker("UA-6262938-1");
pageTracker._trackPageview();
</SCRIPT>
    </TD></TR></TBODY></TABLE>
<SCRIPT 
src="../Project Network Help & FAQ – McGraw-Hill Construction_files/dcs_head(1).js" 
type=text/javascript></SCRIPT>

<SCRIPT 
src="../Project Network Help & FAQ – McGraw-Hill Construction_files/dcs_tag(1).js" 
type=text/javascript></SCRIPT>



</BODY></HTML>

Answer : keep table at base of page

Have you tried the Application object for storing state? It's scope is broader than Session, although perhaps not broad enough to span both services. Do both services exist in the same application pool in IIS?

Application.Add("mySharedList", myList);
Random Solutions  
 
programming4us programming4us