<script language="JavaScript">

/************************************************** ********************************
* Copyright 1999 William Goudy
* http://www.ahmetx.net - personal
* http://www.ahmetx.net
* ivanlar@mynet.com - Email (feel free to email me)
************************************************** ********************************/

var mw=170 /* The width */
var mh=100 /* The height */
var sp=1 /* The Speed */

var text= '1999.12.14 New Scribbler 2000 is available!

1999.12.12 <U>Only 19 days</U> left to Millennium

etc...'

if (document.all)document.write('<marquee direction="up" scrollAmount='+sp+' style="width:'+mw+';height:'+mh+'">'+text+'</marquee>')

function loop()
{
window.location.reload()
}

function loop2()
{
if (document.layers) { setTimeout("window.onresize=loop",350)
init()

}
}

function init()
{
document.marq.document.marqEx.document.write(text)
document.marq.document.marqEx.document.close()
thelength=document.marq.document.marqEx.document.h eight
runmarq()
}

function runmarq()
{
if (document.marq.document.marqEx.top>=thelength*(-1)) {
document.marq.document.marqEx.top-=sp
setTimeout("runmarq()",100)
}

else
{
document.marq.document.marqEx.top=mh
runmarq()

}
}

window.onload=loop2

</script>