var imgUrl=new Array();
var imgText=new Array();
var picNum=0;
imgUrl[1]="images/picnews/a.jpg";
imgText[1]="董事长谢子龙（二排右三）、执行总裁石展（二排左三）、副总裁萧潮声（二排右二）与2006年度15位“老百姓之星”合影";
imgUrl[2]="images/picnews/b.jpg";
imgText[2]="董事长谢子龙（右二）与中国青年群英会参会英模代表合影";
imgUrl[3]="images/picnews/xz9.gif";
imgText[3]="董事长谢子龙先生在优秀中国特色社会主义建设者表彰大会上";
imgUrl[4]="images/picnews/xz10.gif";
imgText[4]="谢子龙先生作为代表在会上发言";
function NextPic(){
    if(picNum<4) picNum++ ;//显示4个图片
    else picNum=1;
    if (document.all){
        document.form1.imgInit.filters.revealTrans.Transition=Math.floor(Math.random()*23);
        document.form1.imgInit.filters.revealTrans.apply();
        document.form1.imgInit.filters.revealTrans.play();
    }
    document.images.imgInit.src=imgUrl[picNum];
    focustext.innerHTML=imgText[picNum];
    theTimer=setTimeout('NextPic()', 8000);
}
