function Koloruj(tag,kolor) {
	tag.style.backgroundColor=kolor;
}
function NieKoloruj(tag,kolor) {
	tag.style.backgroundColor=kolor;
}

function emoticon(text) {
        text = ' ' + text + ' ';
        document.post.tresc.value += text;
        document.post.tresc.focus();
}

function addTitleText(oid,titleText) {
        var oToAddTitle = document.getElementById(oid);
		oToAddTitle.setAttribute('title',titleText);
}


function mpopup(file) {
window.open(file, "Mapka", "width=750, height=490, top="+(screen.availHeight-490)/2+", left="+(screen.availWidth-750)/2+", toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, channelmode=no, fullscreen=no")
}