<!-- 焦点图 begin -->
<script type=text/javascript>
<!--

var imgUrl=new Array();
var imgLink=new Array();
var imgText=new Array();
imgUrl[1]="images/1.jpg";
imgLink[1]="1.asp";
imgText[1]='A';imgUrl[2]="images/2.jpg";
imgLink[2]="2.asp";
imgText[2]='B';imgUrl[3]="images/3.jpg";
imgLink[3]="3.asp";
imgText[3]='C';imgUrl[4]="images/4.jpg";
imgLink[4]="4.asp";
imgText[4]='D';imgUrl[5]="images/5.jpg";
imgLink[5]="5.asp";
imgText[5]='E';imgUrl[6]="images/6.jpg";
imgLink[6]="6.asp";
imgText[6]='F';
var focus_width=500
var focus_height=150
var text_height=20
var swf_height = focus_height+text_height

var j=0;
for (i=1;i<=6;i++) {
if( (imgUrl[i]!="") && (imgLink[i]!="") ) {
j++;
} else {
break;
}
}

var pics=""
var links=""
var texts=""

for (i=1;i<=j;i++) {
pics=pics+imgUrl[i]
if( (i<j)) {pics=pics+"|";} links=links+imgLink[i]
if( (i<j)) {links=links+"|";} texts=texts+imgText[i]
if( (i<j)) {texts=texts+"|";} 
}

document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">');
document.write('<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="images/lx.swf"><param name="quality" value="high"><param name="bgcolor" value="#dfdfdf">');
document.write('<param name="menu" value="false"><param name=wmode value="opaque">');
document.write('<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">');
document.write('<embed src="images/lx.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" bgcolor="#dfdfdf" quality="high" width="'+ focus_width +'" height="'+ focus_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'); document.write('</object>');

//-->
</script>
<!-- 焦点图 end -->运行之后 会显示6张图片的幻灯片效果 图下面会有数字1|2|3|4|5|6|  可是我再增加之后 图片可以显示 下面的数字不显示了 谁能告诉我解决办法?是什么原因引起的?