Dieser Teil des Scripts kommt in den Headbereich

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
//Fenster Breite
var swidth=200

//Fenster Höhe
var sheight=300


//Scrollgeschwindigkeit
var sspeed=2

var wholemessage=''

//Ihr Text

wholemessage='<div align="center"><p>Hier kommt Ihre Mitteilung, Sie k&ouml;nnen hier alles was Sie m&ouml;chten reinschreiben, auch <a href="#"><font size="5"><b>Links</b></font></a> und andere HTML-Elemente. Das ganze rollte die ganze Zeit nach unten nur wenn Sie mit der Maus drauf gehen, bleibt es stehen. Toll, was? </p></div>'

function start(){
if (document.all) return
if (document.getElementById){
document.getElementById("slider").style.visibility="show"
ns6marquee(document.getElementById('slider'))
}
else if(document.layers){
document.slider1.visibility="show"
ns4marquee(document.slider1.document.slider2)
}
}
function ns4marquee(whichlayer){
ns4layer=eval(whichlayer)
ns4layer.document.write(wholemessage)
ns4layer.document.close()
sizeup=ns4layer.document.height
ns4layer.top-=sizeup
ns4slide()
}
function ns4slide(){
if (ns4layer.top>=sizeup*(-1)){
ns4layer.top-=sspeed
setTimeout("ns4slide()",100)
}
else{
ns4layer.top=sheight
ns4slide()
}
}
function ns6marquee(whichdiv){
ns6div=eval(whichdiv)
ns6div.innerHTML=wholemessage
ns6div.style.top=sheight
sizeup=sheight
ns6slide()
}
function ns6slide(){
if (parseInt(ns6div.style.top)>=sizeup*(-1)){
ns6div.style.top=parseInt(ns6div.style.top)-sspeed
setTimeout("ns6slide()",100)
}
else{
ns6div.style.top=sheight
ns6slide()
}
}
// End -->
</script>

Dieser Teil des Scripts kommt in den BodyTag
onLoad='start()'
Dieser Teil des Scripts kommt in den Bodybereich
<span style="borderWidth:1; borderColor:red; width:200; height:300;">
<ilayer width=200 height=300 name="slider1" bgcolor="#FFFFFF" visibility=hide left="6" top="6">
<layer name="slider2" onMouseOver="sspeed=0;" onMouseOut="sspeed=2"> </layer>
</ilayer>
<script language="JavaScript">
if (document.all){
document.writeln('<marquee id="ieslider" scrollAmount=2 width=200 height=300 direction=up style="border:1 solid red;background-color:white">')
document.writeln(wholemessage)
ieslider.onmouseover=new Function("ieslider.scrollAmount=0")
ieslider.onmouseout=new Function("if (document.readyState=='complete') ieslider.scrollAmount=2")
document.write('</marquee>')
}
if (document.getElementById&&!document.all){
document.write('<div style="position:relative;overflow:hidden;width:200;height:300;clip:rect(0 302 102 0); background-color:white;border:1px solid red;" onMouseover="sspeed=0;" onMouseout="sspeed=2">')
document.write('<div id="slider" style="position:relative;width:&{swidth};">')
document.write('</div></div>')
}
</script>
</span>