<!-- Begin
NewImg = new Array (
"images/potm/shot0037.jpg",
"images/potm/ScreenShot1.jpg",
"images/potm/cs_assault0000.jpg",
"images/potm/shot0003.jpg",
"images/potm/camper.gif",
"images/potm/flf_kezman0000.jpg",
"images/potm/pa_fact0001.jpg",
"images/potm/ouch.jpg",
"images/potm/de_prodigy0000.jpg",
"images/potm/cs_italy0000.jpg",
"images/potm/de_nuke0000.jpg");
var ImgNum = 0;
var ImgLength = NewImg.length - 1;

//Time delay between Slides in milliseconds
var delay = 9000;

var lock = false;
var run;
function chgImg(direction) {
if (document.images) {
ImgNum = ImgNum + direction;
if (ImgNum > ImgLength) {
ImgNum = 0;
}
if (ImgNum < 0) {
ImgNum = ImgLength;
}
document.slideshow.src = NewImg[ImgNum];
   }
}
function auto() {
if (lock == true) {
lock = false;
window.clearInterval(run);
}
else if (lock == false) {
lock = true;
run = setInterval("chgImg(1)", delay);
   }
}
//  End -->
