function back()
{
	if (ispage == 'new') self.alert("You are in the first skins page");
	if (ispage == 'best1') self.location.href = "index.htm";
	if (ispage == 'best2') self.location.href = "best1.htm";
	if (ispage == 'best3') self.location.href = "best2.htm";
	if (ispage == 'rest1') self.location.href = "best3.htm";
	if (ispage == 'rest2') self.location.href = "rest1.htm";
}

function next()
{
	if (ispage == 'new') self.location.href = "best1.htm";
	if (ispage == 'best1') self.location.href = "best2.htm";
	if (ispage == 'best2') self.location.href = "best3.htm";
	if (ispage == 'best3') self.location.href = "rest1.htm";
	if (ispage == 'rest1') self.location.href = "rest2.htm";
	if (ispage == 'rest2') self.alert("You are in the last skins page");
}

