var MESSAGE_TIMEOUT = 4000; function changeTab() { var hashtype = window.location.hash.substr(1,3); if(hashtype != "tab") return; var id = window.location.hash.substr(4); var tabs = document.querySelectorAll("#tabs-panel > ul > li"); for(var i=0; i < tabs.length; i++) { if(i == id-1) tabs[i].classList.add("active"); // Doesn't work with IE < 10 (and Opera Mini), but who cares? else tabs[i].classList.remove("active"); } } function showMessage(type, msg) { var msg_box = document.getElementById(type+"-box"); msg_box.style.display = "initial"; var msg_list = msg_box.firstElementChild.firstElementChild; msg_list.innerHTML = "