#12001/7/3 21:05:33
<script language=javascript>
<!--
var index = 3
link = new Array(3);
text = new Array(3);
link[0] ='http://www.cpcw.com/'
link[1] ='http://www.dscj.org/'
link[2] ...
......
text[0] ='电脑报'
text[1] ='点石成金'
text[2] ...
......
document.write ("<marquee scrollamount='1' scrolldelay='50' direction= 'up' width='80' height='40'
onmouseover='this.stop()' onmouseout='this.start()'>");
for (i=0;i<index;i++){
document.write (" <a href="+link[i]+" target='_blank'>");
document.write (text[i] + "</A><br>");
}
document.write ("</marquee>")
// -->
</script>