Oh yeah, to open the ticker paste the following code into your document template...
Code:
<script language="javascript">
<!--
var tickerWindow = null;;
function openTicker(){
if (document.layers || document.all || document.getElementById){
var tt = 255;
var tl = 177;
if (screen.width){
tt = (screen.height-130)/2;
tl = (screen.width-445)/2;
}
if (tickerWindow == null || tickerWindow.closed)
tickerWindow = window.open("/ticker/ticker.htm", "twindow", "toolbar=0,status=0,menubar=0,scrollbars=0,location=0,directories=0,resizable=0,height=100,width=434,top="+tt+",left="+tl);
}
else {
alert ("We\'re sorry but the Latest Post Ticker only works in Netscape 4\+\, IE4\+ or a 100\% DOM\/CSS compliant browser.");
}
}
//-->
</script>
then call if from a link like so...
<a href="#" onClick="openTicker()">Open Ticker</a>
Dan