var PagePic = new Array(
"Garage_",
"GarageGord_",
"FiveSided",
"F1000004_");

var PageAlt = new Array(
"16 x 20 Garage Kit",
"12 x 16 Garage Kit",
"five sided pool cabana",
"five sided house with dormer");

var PageURL = new Array(
location.pathname + "16x20-garage-kit",
location.pathname + "12x16-garage-kit",
location.pathname + "five-sided-pool-cabanas/index",
location.pathname + "five-sided-pool-cabanas/dormer");

var indexNum = 0;
var maxNum = 2;
var maxPics = 2;
var CurrPicName = PagePic[0];
var CurrURLName = PageURL[0];

function NextPage() {
//	ShowDetailOver()
	window.location = CurrURLName + ".asp";
}