function pageLink(urlPage, offset, jump) { var contextPath = document.getElementById("contextPathPaging").value; if(!checkSubmit()) { return false; } var url = contextPath; url += urlPage; url += "/"; url += offset; url += "/"; url += jump; url += "#jump"; //document.location.href = encodeURI(url); document.location.href = url; return false; }