Forum Moderators: open
<!--
var blank = "blank.gif";
topedge = 400;
leftedge = 200;
boxheight = 50;
boxwidth = 300;
scrollheight = 120;
function scrollnews(cliptop) {
if (document.layers) {
newsDiv = document.news;
newsDiv.clip.top = cliptop;
newsDiv.clip.bottom = cliptop + boxheight;
newsDiv.clip.left = 0;
newsDiv.clip.right = boxwidth + leftedge;
newsDiv.left = leftedge;
newsDiv.top = topedge - cliptop;
}
else {
newsDiv = news.style;
newsDiv.clip = "rect(" + cliptop + "px " + (boxwidth + leftedge) + "px " + (cliptop + boxheight) + "px 0px)";
newsDiv.pixelLeft = leftedge;
newsDiv.pixelTop = topedge - cliptop;
}
cliptop = (cliptop + 1) % (scrollheight + boxheight);
newsDiv.visibility='visible';
setTimeout("scrollnews(" + cliptop + ")", 80);
}
//-->
</script>
</HEAD>
<BODY OnLoad="scrollnews(0)">
<div ID="news" style="position:absolute; visibility:hidden;
top:1; left:1; height:100;
clip:rect(10,100,100,10); border-width:0px;">
<table border=0 cellpadding=1 cellspacing=0 bgcolor="white">
<tr>
<td>
<script language="javascript">
document.write('<img src=' + blank + ' width=1 height='+boxheight+'>');
</script>
</td>
</tr>
<tr>
<td>
<!-- These are the text lines that show on screen-->
<H2><B>
<FONT FACE="VERDANA" COLOR="BLUE">
Etelä-Pohjanmaan matkailu<br>
Tänään on ukkosta ilmassa<br></FONT>
<FONT FACE="HELVETICA" COLOR="GREEN">
Mökkejä vielä vapaana! Soita 06-123456<br>
Muistathan Tangomarkkinat Seinäjoella 10.-13.7.2003<br>
Tule sinäkin lomailemaan eteläpohjanmaalle <br></FONT>
</tr>
<tr>
<td>
<script language="javascript">
document.write('<img src=' + blank + ' width=1 height='+boxheight+'>');
</script>
</td>
</tr>
</table>
</div>