﻿function gotoPage() {
	var page = prompt("Which page do you want to jump to?", currentPage);
	
	if (page != null &&!isNaN(page) && page > 0) {
		window.location = baseURL + "&start=" + (((page - 1) * resultsPerPage) + 1);
	} //end if
} //end gotoPage
