Array.prototype.inArray = function (value) { var i; for (i=0; i < this.length; i++) { if (this[i] === value) { return true; } } return false; };
function nastav_akci(akce){ document.getElementById('akce').value=akce; }