/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ // JavaScript Document function openMenu() { var menuLayer = document.getElementById('menu-layer'); if (menuLayer.style.display == 'none') { menuLayer.style.display = 'block'; }else{ menuLayer.style.display = 'none'; } } function redirectToUrl(url) { if (url.indexOf("http") != -1) { window.location.href = url; } else { window.location.href = window.location.origin + url; } } function newPage(page) { var url = new URL(window.location.href); url.searchParams.set('pagina', page); redirectToUrl(url.href); }