﻿// JScript File
function confirmClientRemove()
{
    return confirm('Weet u zeker dat u uw account wilt verwijderen.');
}
function resizeWindow()
{
    var o = document.getElementById('bnnrs');
    if( o != null ) {
        if(document.body.clientHeight < 525)
            o.style.top = "404px";
        else
            o.style.top =(document.body.clientHeight - 120)+ "px";
    }
} 

// set resize handler
window.onresize = resizeWindow;

function fnToggleCategories(vis,id1,id2,id3)
{
    var o1,o2,o3;
    o1 = document.getElementById(id1);
    o2 = document.getElementById(id2);
    o3 = document.getElementById(id3);
    if( o1 != null && o2 != null && o3 != null )
    {
        if( vis )
        {
            o1.style.visibility = 'visible';
            o2.style.visibility = 'visible';
            o3.style.visibility = 'visible';
        }
        else
        {
            o1.style.visibility = 'hidden';
            o2.style.visibility = 'hidden';
            o3.style.visibility = 'hidden';
        }
    }
}