<!--
if ( document.all && !(document.getElementById) && !(window.opera) ){ document.styleSheets[0].disabled = true; } 
function gId(id) { if (document.getElementById) return document.getElementById(id); else return false; } 
function chyba(a,b,c) { return true; } window.onerror=chyba; 

function smajlik(text) {
	var txtarea = document.x.vzkaz;
	text = ' ' + text + ' ';
	if (txtarea.createTextRange && txtarea.caretPos) {
		var caretPos = txtarea.caretPos;
		caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? caretPos.text + text + ' ' : caretPos.text + text;
		txtarea.focus();
	} else {
		txtarea.value  += text;
		txtarea.focus();
	}
}


function storeCaret(textEl) {
	if (textEl.createTextRange) textEl.caretPos = document.selection.createRange().duplicate();
}


function smaz_vzkaz() {
  ok = confirm("Opravdu chceš smazat vybrané vzkazy?"); 
  if (ok) vzkazy.submit(); 
  else alert('Nic nebylo smazáno..');
}


function invers() {
  var a = document.vzkazy["maz[]"];
	if (a) {
	  for (var i=0;i<a.length;i++)	// >
		  a[i].checked = !a[i].checked;

		if (!a.length)
		  a.checked = !a.checked;
	}
}



//-->
