NewImg = new Array (
"images/fishing_pic_1_a_day_catch.jpg",
"images/fishing_pic_2_arrowhead.jpg",
"images/fishing_pic_3_baby_shark.jpg",
"images/fishing_pic_4_Barracuda_4kg.jpg",
"images/fishing_pic_5_Barracuda_5kg.jpg",
"images/fishing_pic_6_Barracuda_8kg.jpg",
"images/fishing_pic_7_bata_fish_or_remora.jpg",
"images/fishing_pic_8_Batang_30kg.jpg",
"images/fishing_pic_9_Batangs_5kg_each.jpg",
"images/fishing_pic_10_batfish.jpg",
"images/fishing_pic_11_Cobia_4kg.jpg",
"images/fishing_pic_12_Cobia_8kg.jpg",
"images/fishing_pic_13_Cobia_9kg.jpg",
"images/fishing_pic_14_Cobia_12kg.jpg",
"images/fishing_pic_15_Cobia_22kg.jpg",

"images/fishing_pic_16_emperor.jpg",
"images/fishing_pic_17_flatfish.jpg",
"images/fishing_pic_18_giant_sotong.jpg",
"images/fishing_pic_19_Giant_Sotong.jpg",
"images/fishing_pic_20_Golden_Trevally.jpg",
"images/fishing_pic_21_Golden_Trevally_5kg.jpg",
"images/fishing_pic_22_huge_chebak.jpg",
"images/fishing_pic_23_Laimang_2.5kg.jpg",
"images/fishing_pic_24_lobster.jpg",
"images/fishing_pic_25_more_giant_sotong.jpg",
"images/fishing_pic_26_octopus.jpg",
"images/fishing_pic_27_parrot_fish.jpg",
"images/fishing_pic_28_rabbit_fish.jpg",
"images/fishing_pic_29_saitoh_or_wolf_herring.jpg",
"images/fishing_pic_30_saitohs_or_wolf_herrings.jpg",
"images/fishing_pic_31_SBK_3kg.jpg",
"images/fishing_pic_32_SBK_5kg.jpg",
"images/fishing_pic_33_SBK_6kg.jpg",
"images/fishing_pic_34_seklah_season.jpg",
"images/fishing_pic_35_seklah_season_again.jpg",
"images/fishing_pic_36_Shovel_Nose_Ray_Shark_38kg.jpg",
"images/fishing_pic_37_sotong.jpg",
"images/fishing_pic_38_Stingray_9kg.jpg",
"images/fishing_pic_39_Stingray_30k.jpg",
"images/fishing_pic_40_table_size_catches_in_the_rain.jpg",
"images/fishing_pic_41_todak_or_gar_fish.jpg",
"images/fishing_pic_42_Todak_or gar_fish_caught_with_no_hooks.jpg",
"images/fishing_pic_43_Trevally.jpg"
);
var ImgNum = 0;
var ImgLength = NewImg.length - 1;

//Time delay between Slides in milliseconds
var delay = 3000;

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);
   }
}
function goImgWin(myImage,myWidth,myHeight,origLeft,origTop) {
myHeight += 24;
myWidth += 24;
TheImgWin = window.open(myImage,'image','height=' +
myHeight + ',width=' + myWidth +
',toolbar=no,directories=no,status=no,' +
'menubar=no,scrollbars=no,resizable=no');
TheImgWin.resizeTo(myWidth+2,myHeight+30);
TheImgWin.moveTo(origLeft,origTop);
TheImgWin.focus();
}

