function show_window(what2show) {
    hide_windows()

    document.getElementById(what2show).style.visibility = "visible";
    document.getElementById(what2show).style.position = "static";
}

function hide_windows() {
    document.getElementById('indentcelebs').style.visibility = "hidden";
    document.getElementById('indentcelebs').style.position = "absolute";
    document.getElementById('indentfashion').style.visibility = "hidden";
    document.getElementById('indentfashion').style.position = "absolute";
}
