NewPomoc = new Array (
"images/pomoc/Slajd1.JPG",
"images/pomoc/Slajd2.JPG",
"images/pomoc/Slajd3.JPG",
"images/pomoc/Slajd4.JPG",
"images/pomoc/Slajd5.JPG",
"images/pomoc/Slajd6.JPG",
"images/pomoc/Slajd7.JPG",
"images/pomoc/Slajd8.JPG",
"images/pomoc/Slajd9.JPG",
"images/pomoc/Slajd10.JPG",
"images/pomoc/Slajd11.JPG",
"images/pomoc/Slajd12.JPG",
"images/pomoc/Slajd13.JPG",
"images/pomoc/Slajd14.JPG",
"images/pomoc/Slajd15.JPG",
"images/pomoc/Slajd16.JPG",
"images/pomoc/Slajd17.JPG",
"images/pomoc/Slajd18.JPG",
"images/pomoc/Slajd19.JPG"
);
var PomocNum = 0;
var PomocLength = NewPomoc.length - 1;
function chgPomoc(direction) {
if (document.images) {
PomocNum = PomocNum + direction;
if (PomocNum > PomocLength) {
PomocNum = 0;
}
if (PomocNum < 0) {
PomocNum = PomocLength;
}
document.slide.src = NewPomoc[PomocNum];
   }
}