function postOdpowiedz() {
    $('#PostTresc').focus();
    tinyMCE.execInstanceCommand("PostTresc", "mceFocus");
}

function postCytuj(userId, postId) {
    var tresc ='';
    tresc = '[cytat ' + $('#'+userId).text() + ']' + $('#'+postId).html() + '[/cytat]';
    tinyMCE.get('PostTresc').setContent(tresc);
    tinyMCE.execInstanceCommand("PostTresc", "mceFocus");
}

$('document').ready(function() {

	$('textarea[name="UzytkownikProfilOMnie"]').keyup(function() {
		if($(this).val().length > 200) {
			$(this).val($(this).val().substring(0, 200));
		}
	});
	$('textarea[name="UzytkownikProfilUlubione"]').keyup(function() {
		if($(this).val().length > 300) {
			$(this).val($(this).val().substring(0, 300));
		}
	});


});
