将marquee放在table中,再调整table的位置
<script language=javascript><!-- 
var index = 6
link = new Array(5);
text = new Array(5);
link[0] ='****.php'
link[1] ='****.php'
link[2] ='****.php'
link[3] ='****.php'
link[4] ='****.php'
link[5] ='****.php'
text[0] ='***********'
text[1] ='***********'
text[2] ='***********'
text[3] ='***********'
text[4] ='***********'
text[5] ='***********'
document.write ("<table align=center><tr><td>");
document.write ("<marquee scrollamount='1' scrolldelay='100' direction= 'down' width='200' height='150'>");
for (i=0;i<index;i++){
document.write ("<a href="+link[i]+" target='_blank'>");
document.write (text[i] + "</a><br><br>");
}document.write ("</marquee>")
document.write ("</td></tr></table>");// --></script>