function jumper(open,max) {
	destination = Math.floor(prompt("Jump to page:",""));
	p = (destination - 1) * max;
	
	if (destination) {
		top.location.href = 'browse.cgi?open=' + open + '&p=' + p + '&m=' + max;
	}
}
function imagejumper(open,max,p) {
	destination = Math.floor(prompt("Jump to image:",""));
	image = (destination - 1);
	
	if (destination) {
		top.location.href = 'enlarge.cgi?open=' + open + '&p=' + p + '&m=' + max + '&image=' + image;
	}
}