document.writeln("<SCRIPT>");
document.writeln("var NowFrame = 1;");
document.writeln("var MaxFrame = 3;");
document.writeln("var bStart = 0;");
document.writeln("function fnToggle() {");
document.writeln(" var next = NowFrame + 1;");
document.writeln(" if(next == MaxFrame+1) ");
document.writeln(" {");
document.writeln("  NowFrame = MaxFrame;");
document.writeln("  next = 1;");
document.writeln(" }");
document.writeln(" if(bStart == 0)");
document.writeln(" {");
document.writeln("  bStart = 1;");
document.writeln("  ");
document.writeln("  setTimeout(\'fnToggle()\', 3000);");
document.writeln("  return;");
document.writeln(" }");
document.writeln(" else");
document.writeln(" {");
document.writeln("     oTransContainer.filters[0].Apply();");
document.writeln("  document.images[\'oDIV\'+next].style.display = \"\";");
document.writeln("  document.images[\'oDIV\'+NowFrame].style.display = \"none\"; ");
document.writeln("  oTransContainer.filters[0].Play(duration=2);");
document.writeln("  if(NowFrame == MaxFrame) ");
document.writeln("   NowFrame = 1;");
document.writeln("  else");
document.writeln("   NowFrame++;");
document.writeln(" } setTimeout(\'fnToggle()\', 4000);");
document.writeln("}");
document.writeln("fnToggle();");
document.writeln("<\/SCRIPT>")