/* Emotikony */
function emoticon(typ) {
document.getElementById('komentarz').value+=typ;
}
function emoticona(typ) {
document.getElementById('opis').value+=typ;
}
function cytuj(kto)
{
   var txt = '';
   if (window.getSelection)//mozilla safari
      txt = window.getSelection();
   else if (document.getSelection)//mozilla opera
      txt = document.getSelection();
   else if (document.selection)//tylko ie
      txt = document.selection.createRange().text;
   else return;
	 if(txt=='')
	 return alert('Zaznacz tekst do cytowania!');
	 else
	 {
   document.getElementById('opis').value += '[cytat='+kto+']'+txt+'[/cytat]\r\n';
	 txt='';
	 }
}


