document.writeln('
');
document.writeln('
');document.writeln('
');document.writeln('
');document.writeln('
');
document.writeln('
');
document.writeln('
');
document.writeln(' ');
document.writeln(' | 1 | ');
document.writeln(' 2 | ');
document.writeln(' 3 | ');
document.writeln(' 4 | ');
document.writeln('
');
document.writeln('
');
document.writeln('
');
document.writeln('
');
var crPst , maxPst;
crPst=1;
maxPst=4;
function changePic()
{
if (crPst>maxPst) crPst=1;
setPicFocus(crPst);
crPst++;
setTimeout('changePic()',6000);
}
function setPicFocus(i)
{
for (r=1;r<=maxPst;r++)
{
document.getElementById("PicFocus"+r).style.display="none";
}
if (i>maxPst) i=1;
document.getElementById("PicFocus"+i).style.display="block";
document.getElementById("PicMore").style.background="url(http://www.emz.com.cn/images/num"+i+".gif)";
}
changePic();