function loadpage() { 
index1 = 0;
listofimages = new Array(3);
listofimages[0] = new Image(716,114)
listofimages[0].src = "images/banner.gif"
listofimages[1] = new Image(716,114)
listofimages[1].src = "images/banner1.gif"
listofimages[2] = new Image(716,114)
listofimages[2].src = "images/banner2.gif"

thetimer = setTimeout("changeimage()", 2000);

} 

function changeimage(){ 
index1 = index1 + 1
if (index1 == "3") { 
index1 = 0 
} 
imagesource = listofimages[index1].src
window.document.banner1.src = imagesource

thetimer = setTimeout("changeimage()", 1500);

} 

function changepage() { 
if (index1 == 0) { 
newlocation = "borang_kanakremaja.html" 
}
else if (index1 == 1) { 
newlocation = "borang_dewasa.html" 
}
else if (index1 == 2) { 
newlocation = "jawatan_sukarela.html" 
}
location = newlocation 
} 

