//

function GoNext() {
	str = new String(window.location.href);
	result = str.lastIndexOf('&page');

	if (result == -1) {
	    window.location.href += '&page=1';
	} else {
		res1 = str.slice(0, result);
		res2 = str.slice(result+6);
		if (res2 > 5) {
			window.location.href = res1;			
		} else {
			res2++;
			window.location.href = res1 + '&page='  + res2;
		}
	}
}

