//js pro odeslani formulare knihy navstev
function SendForm()
 { var err = false;

    if( document.forms['kniha'] )
    { if(document.forms['kniha']['nick'].value == ''  || document.forms['kniha']['text'].value == ''  || document.forms['kniha']['kontrola'].value == '' ) err = true;
    }

    if( err )
    { alert("Vyplňte prosím jméno, text zprávy a správnou kontolní otázku!");
      return false;
    }
    else
    { return true;
    }
  }

// js pro vlozeni smajlu v knize navstev
function smajlik(text) { if (document.kniha.text.createTextRange &&
	document.kniha.text.caretPos) { var caretPos = document.kniha.text.caretPos;
	caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ?
	text + ' ' : text; } else document.kniha.text.value += text; document.kniha.text.focus(caretPos) }

// js pro vlozeni do editoru texy!
//potrebny pro modul clanky-texy
function vlozeni(text) { if (document.editor.text.createTextRange &&
	document.editor.text.caretPos) { var caretPos = document.editor.text.caretPos;
	caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ?
	text + ' ' : text; } else document.editor.text.value += text; document.editor.text.focus(caretPos) }

// js pro zobrazeni textu po volani funkce
function Ukaz(id){
el=document.getElementById(id).style;
el.display=(el.display == 'block')?'none':'block';
}

//obarvovani tabulek
//obarvovani radku tabulky
window.onload = initTable;

function initTable() {
//	stripeAllTables(); //obarveni vsech !! tabulek
	stripeTableById('table1');  //obarvi dane idecka
	}

function stripeTable(t) {
	var i, odd = true;
	for (i=0; i<t.rows.length; i++) {
		t.rows[i].className += odd ? ' odd' : ' even';
		odd = !odd;
		}
	}
function stripeTableById(id) {
	var t = document.getElementById(id);
	if (t) stripeTable(t);
	}

function stripeAllTables() {
	var t = document.getElementsByTagName('TABLE');
	for (var i=0; i<t.length; i++) stripeTable(t[i])
	}

