{MODULE header:}
<!-- Hidden frame into which IE loads files -->
<!-- The name should always be the same as the scroller object, plus 'Buf' -->
<iframe name="contentBuf" class="absDiv" style="width: 0px; height: 0px; top: -50px"></iframe>
<!--
Main scrolling divs. The content of this is replaced by loaded files, so put a message inside
if you want that will tell the user of any loading error. Alternatively, put your HTML content
in there if you don't want to load files - pass an empty string to the scroller object setup,
and I recommend you hardcode a width on it to help NS4 if you take this approach.
The outer div must be named "objectnameOuter", and the inner div "objectnameInner".
-->
<div id="contentOuter" class="absDiv">
<div id="contentInner" class="absDiv" >
Sorry, your browser does not support this DHTML script.
</div>
</div>
<!-- MANUAL SCROLLING COMMANDS - Adjust acceleration etc. here -->
<!--
You can call scrollTo() or scrollBy() with a pixel amount to scroll the div once.
Alternatively call setScroll() with a speed in pixels, and the number of steps you want the
scroller to take to reach that speed (minimum 1), for smooth acceleration/deceleration.
So if you want to disable acceleration, call setScroll(speed, 1) instead of (speed, number).
If you want set a slow speed onmouseover and a faster one onmousedown for a neat effect.
-->
<div id="contentUpArrows" class="absDiv">
<a href="javascript:content.scrollTo(0)" title="Back to Top (T)">Top</a>
<br />
<a href="javascript:void(0)" onmousedown="content.setScroll(-10, 8); return false"
onmouseup="content.setScroll(0, 4)" onclick="return false" onmouseout="content.setScroll(0, 2)"
title="Scroll Up (A)">Up</a>
</div>
<!-- Show off some CSS, give these background images etc if you want... -->
<div id="contentBar" class="absDiv" style="background-color: #336699;
layer-background-color: #336699; cursor: pointer; cursor: hand"></div>
<div id="contentThumb" class="absDiv" style="background-color: #99CCFF;
layer-background-color: #99CCFF; cursor: move" ></div>
<div id="contentDownArrows" class="absDiv">
<a href="javascript:void(0)" onmousedown="content.setScroll(10, 8); return false"
onmouseup="content.setScroll(0, 4)" onclick="return false" onmouseout="content.setScroll(0, 2)"
title="Scroll Down (Z)">Dn</a>
<br />
<a href="javascript:content.scrollTo(content.divHeight)" title="Go to Bottom (B)">Bot</a>
</div>
<div style="width: 550px; height: 500px; border: 1px solid black">
{MODULE project: project={GET project}}
</div>
{MODULE footer:}