// JavaScript Documentfunction sottopagina(numero,sottonumero) {//linketto = ","+numero//if (sottonumero) {	linketto = ","+numero+","+sottonumero	//}window.location.href = document.URL+linketto}function paginaparallela(numero) {// Create variable is_input to see if there is a ? in the urlvar input = document.URL.indexOf("=");if (input != -1) {stringa = document.URL.substring(input+1, document.URL.length);	valori = stringa.split(",")	valori[valori.length-1] = numero	//document.URL.replace(input+1,valori[0])	window.location.href = document.URL.replace(stringa,valori.join(","))	//alert(valori.length)}else {}}