var index = 2
link = new Array(18);
text = new Array(50);
link[1]='2.htm'
text[1]='2、欢迎大家光临指导'
link[0]='1.htm'
text[0]='1、欢迎光临安阳市安全生产信息网'
document.write ("<marquee scrollamount='1' scrolldelay='150' direction= 'up' width='140' height='80' onmouseover='this.stop()' onmouseout='this.start()'>");

for (i=0;i<index;i++){
document.write ("&nbsp;<a href="+link[i]+" target='_blank'>");
document.write (text[i] + "</A><br>");
}
document.write ("</marquee>")
