var images = new Array("images/wuw/act1/Cap0002.BMP", 
						"images/wuw/act1/Cap0003.BMP", 
						"images/wuw/act1/Cap0017.BMP", 
						"images/wuw/act1/Cap0041.BMP",
						"images/wuw/act1/Cap0042.BMP",
						"images/wuw/act1/Cap0043.BMP",
						"images/wuw/act1/Cap0054.BMP",
						"images/wuw/act1/Cap0058.BMP",
						"images/wuw/act1/Cap0061.BMP",
						"images/wuw/act1/Cap0063.BMP",
						"images/wuw/act1/Cap0066.BMP",
						"images/wuw/act1/Cap0069.BMP",
						"images/wuw/act2/Cap0072.BMP",
						"images/wuw/act2/Cap0073.BMP",
						"images/wuw/act2/Cap0079.BMP",
						"images/wuw/act2/Cap0080.BMP",
						"images/wuw/act2/Cap0085.BMP",
						"images/wuw/act2/Cap0086.BMP",
						"images/wuw/act2/Cap0087.BMP",
						"images/wuw/act2/Cap0088.BMP",
						"images/wuw/act2/Cap0089.BMP",
						"images/wuw/act2/Cap0090.BMP",
						"images/wuw/act2/Cap0091.BMP",
						"images/wuw/act2/Cap0092.BMP",
						"images/wuw/act2/Cap0104.BMP",
						"images/wuw/act2/Cap0105.BMP",
						"images/wuw/act2/Cap0107.BMP",
						"images/wuw/act2/Cap0108.BMP",
						"images/wuw/act2/Cap0109.BMP",
						"images/wuw/act2/Cap0110.BMP",
						"images/wuw/act2/Cap0111.BMP",
						"images/wuw/act2/Cap0114.BMP",
						"images/wuw/act2/Cap0116.BMP",
						"images/wuw/act2/Cap0121.BMP",
						"images/wuw/act2/Cap0132.BMP"
						);

var widths = new Array("490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490",
						"490"
						);
var spot = 0;

function viewImage(num) {
	var i;
	var d;
	
	if (document.getElementById) { 
		i = document.getElementById("largepic");
		d = document.getElementById("img-shadow");
	}
	else if (document.all && !document.getElementById) {
		i = document.all("largepic");
		d = document.all("img-shadow");
	}
	i.src = images[num];
	d.style.width = widths[num] + "px";
	spot = num;
	scroll(0,0);
}

function nextImage() {
	if (document.getElementById) { 
		i = document.getElementById("largepic");
		d = document.getElementById("img-shadow");
	}
	else if (document.all && !document.getElementById) {
		i = document.all("largepic");
		d = document.all("img-shadow");
	}
	spot += 1;
	if (spot >= images.length) {
		spot = 0;
	}
	i.src = images[spot];
	d.style.width = widths[spot] + "px";
}

function previousImage() {
	if (document.getElementById) { 
		i = document.getElementById("largepic");
		d = document.getElementById("img-shadow");
	}
	else if (document.all && !document.getElementById) {
		i = document.all("largepic");
		d = document.all("img-shadow");
	}
	spot -= 1;
	if (spot < 0) {
		spot = images.length - 1;
	}
	i.src = images[spot];
	d.style.width = widths[spot] + "px";
}
