function switchhint( hide ){
    var hint_f = document.getElementById('tfull');
    var hint_s = document.getElementById('tshort');
    if( hide == 0 ){
	hint_s.style.display = 'none';
	hint_f.style.display = 'inline';
    } else {
    	hint_s.style.display = 'inline';
	hint_f.style.display = 'none';
    }
    return false;
}



function toggle( id, num ){
    var id1 = document.getElementById( id + "_1" );
    var id2 = document.getElementById( id + "_2" );
    if( num == 2 ){
	id1.style.display = 'none';
	id2.style.display = 'inline';
    } else {
    	id1.style.display = 'inline';
	id2.style.display = 'none';
    }
    return false;
}





info = new Array();
info[0] = "<b>Gallery</b> &#187; Pictures and videos owned by current account";
info[1] = "<b>Inbox</b> &#187; List of account's incoming messages";
info[2] = "<b>Outbox</b> &#187; List of account's outgoing messages";
info[3] = "<b>Friendlist</b> &#187; List of account's friends";
info[4] = "<b>Friendedlist</b> &#187; List of accounts which marked current one as friend";
info[5] = "<b>Blacklist</b> &#187; Account's blacklist";
info[6] = "<b>Blacklisted</b> &#187; List of accounts which blacklisted current one";
info[7] = "<b>Abuse reports by</b> &#187; Abuses reported by current account";
info[8] = "<b>Abuse reports on</b> &#187; Abuses reported on current account";
info[9] = "<b>Ban history</b> &#187; List of bans for current account";
info[10] = "<b>Chatter history</b> &#187; Events 'Chatter of the day' for current account";
info[11] = "<b>Bad activity</b> &#187; Chat moderators' actions on this account";

function showhint(ind){
    d = document.getElementById("info");
    d.innerHTML = info[ind];
}
