/* Cross browser scrolling images script distributed by Santosh Kumar */

//change the scrollers width (in pixels)
var scrollerwidth=150
//change the scrollers height
var scrollerheight=150
//change the scrollers scroll speed (larger is faster)
var speed=3
//change the scrollers contents
var scrollercontents='<Div align="center"><a href="http://www.goldenwebawards.com/officialawardwinner.shtml" target="_blank"><img src="images/webaward1999.jpg" alt="Golden web award 1999" border="0"></a><BR><BR><a href="http://www.goldenwebawards.com/officialawardwinner.shtml" target="_blank"><img src="images/webaward2000.jpg" alt="Golden web award 2000" border="0"></a><BR><BR><a href="http://www.goldenwebawards.com/officialawardwinner.shtml" target="_blank"><img src="images/webaward2002.jpg" alt="Golden web award 2002" border="0"></a><BR><BR><a href="http://www.goldenwebawards.com/officialawardwinner.shtml" target="_blank"><img src="images/webaward2003.jpg" alt="Golden web award 2003" border="0"></a></DIV>'

if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+scrollerwidth+';height:'+scrollerheight+'">'+scrollercontents+'</marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",165)
intializescroller()
}
}

function intializescroller(){
document.vscroller01.document.vscroller02.document.write(scrollercontents)
document.vscroller01.document.vscroller02.document.close()
thelength=document.vscroller01.document.vscroller02.document.height
scrollit()
}

function scrollit(){
if (document.vscroller01.document.vscroller02.top>=thelength*(-1)){
document.vscroller01.document.vscroller02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.vscroller01.document.vscroller02.top=scrollerheight
scrollit()
}
}
window.onload=regenerate2