function change(idcko){
    objekt = document.getElementById('p'+idcko);
    if (objekt.style.display == 'block'){
        objekt.style.display = 'none'
    }
    else{
        objekt.style.display = 'block';
    }


}




// {{{ road_map menu changer

var RM_change_last = null;

function RM_change_look( id , action)
{
    dfl = $('rm-detail-default');
    mnu_item = $( id );
    if ( action == 'off' ){
        RM_change_last = mnu_item;
    } else {
        if (RM_change_last != mnu_item && RM_change_last != null ) {
            if (RM_change_last.style.display != 'none'){
                RM_change_last.style.display = 'none';
            }
        }
        dfl.style.display = 'none';
        mnu_item.style.display = 'block';
        RM_change_last = mnu_item;
    }

}

// }}}



function togle_quick_login (type){
    qb_web = $('quick_login_web');
    qb_email = $('quick_login_email');
    if (type == 'mail'){
        qb_email.style.display = 'block';
        qb_web.style.display = 'none';
    } else {
        qb_email.style.display = 'none';
        qb_web.style.display = 'block';

    }
}

