//specify interval between slide (in mili seconds)
var slidespeed=2500
//specify images
var slideimages=new Array("http://www.nkomazitrust.org/images/img001.jpg","http://www.nkomazitrust.org/images/img000.jpg","http://www.nkomazitrust.org/images/img002.jpg","http://www.nkomazitrust.org/images/img003.jpg","http://www.nkomazitrust.org/images/img004.jpg","http://www.nkomazitrust.org/images/img005.jpg")
//specify corresponding links
var imageholder=new Array()
var ie=document.all
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}


var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+''
win = window.open(mypage,myname,settings)
}

