26 lines
552 B
JavaScript

function o(input) {
var o;
if (typeof input === "string")
o = document.getElementById(input);
else if (typeof input === "object")
o = input;
return o;
}
// megjelenítés / eltüntetés
function show(obj) {
o(obj).setAttribute("shown", "true");
}
function hide(obj) {
o(obj).setAttribute("shown", "false");
}
function toggle_show(obj) {
o(obj).setAttribute("shown", o(obj).getAttribute("shown") === "false");
}
function scroll_enable(on) {
document.body.style.overflowY = on ? "scroll" : "hidden";
}