var PagePic = new Array(
"WA0_",
"Boathouse",
"MZ1_",
"KA1_",
"Bunkie1_");

var PageAlt = new Array(
"cabin with screenroom",
"cabin",
"cabin with porch",
"cottage bunkie",
"cottage bunkie");

var PageURL = new Array(
location.pathname + "12x18_Cabin",
location.pathname + "boathouse/index",
location.pathname + "12x12_Cabin",
location.pathname + "bunkies/10x16_Bunkie",
location.pathname + "bunkies/index");

var indexNum = 0;
var maxNum = 4;
var maxPics = 5;
var CurrPicName = PagePic[0];
var CurrURLName = PageURL[0];

function NextPage() {
//	ShowDetailOver()
	window.location = CurrURLName + ".asp";
}