// JavaScript Document
function goNext() {
if(curPage < 1219) {
	curPage += 1;
	window.location.href = "lp" + curPage + ".htm";
}
else {
	window.location.href = "index.htm";
}
};

function goBack() {
if(curPage > 1200) {
	curPage -= 1;
	window.location.href = "lp" + curPage + ".htm";
}
else {
	window.location.href = "index.htm";
}
};
function goNext2() {if(curPage < 1224) {curPage += 1;window.location.href = "lp" + curPage + ".htm";}
else {window.location.href = "index.htm";}};

function goBack2() {if(curPage > 1220) {curPage -= 1;window.location.href = "lp" + curPage + ".htm";}
else {window.location.href = "index.htm";}};