//共通関数、n秒後にtargetページ移動

var nextPage = "";
function autoMove(target,n) {
	nextPage = target;
	setTimeout(movePage,1000 * n);
}

function movePage() {
	if(nextPage == 'close')
		window.close();
	else
		window.location.href=nextPage;
}
