/*
hideThematicMenuNode = function ( thematicNode )
{
    var node = thematicNode.children[1];
    node.style.display = 'none';
}

showThematicMenuNode = function (thematicNode){
    var node = thematicNode.children[1];
    node.style.display = '';
}


function inProcess(){
    alert("В процессе разработки...");
    return false;
}
*/

/**
 * Получение всех параметров (query part) начинающихся не с  'wicket'.
 */
function  notWicketParamsFromUrl( url )
{
    var retVal = "";

    var idx = url.indexOf('?');
    if( idx != -1 )
    {
        var qp = url.substring( idx +1 );
        var splited = qp.split( '&' );

        for( str in splited )
        {
            var s = splited[str];
            if( s.match(/^wicket:\w*=/) != null )
            {
                continue;
            }

            if( retVal.length != 0 )
            {
                retVal += "&";
            }
            retVal += s;
        }
    }
    return retVal;
}

