function toogleDivStatus(divName) {
    divElement = document.getElementById(divName);
    if (divElement.style.display == 'none') {
        divElement.style.display = 'block';
    } else {
        divElement.style.display = 'none';
    }
}

function popUp(url, name, width, height) {
    popUp(url, name, width, height, "1");
}

function popUp(url, name, width, height, scrollbars) {
    window.open(url, name, "toolbar=0,scrollbars=" + scrollbars + ",location=0,statusbar=0,menubar=0,resizable=1,width=" + width + ",height=" + height);
}
