<!--
var _a = "Stop";
var _b = "Play";
var t= 0

function changeme() {
  document.slideshow_form.b1.value = _a;

t++
if (t==1){
document.slideshow_form._p.disabled = document.slideshow_form._n.disabled = true;
ss.next();ss.play();
}
else if (t%2==0){
ss.pause();
document.slideshow_form.b1.value = _b;
document.slideshow_form._p.disabled = document.slideshow_form._n.disabled = false;
}
else if (t%2==1){
document.slideshow_form.b1.value = _a;
document.slideshow_form._p.disabled = document.slideshow_form._n.disabled = true;
ss.next();ss.play();
}
}
//-->
