// JavaScript Document
function nextPage(page)  {
	if (page.match("http:")){
		window.open(page)
	}
	else
		window.location = page
}