function changePage( /* int */elem) {
	var url = window.location.href;
	var new_url = url.replace(/\?id\=\d*/, "?id=" + elem);
	location = new_url;
}
