function vyradit(co) {
p = co.parentNode;
p.removeChild(p.firstChild);
//for(i=0;i
= 3)
radek = tabulka.insertRow(tabulka.rows.length);
//nová buňka v řádku
bunka = radek.insertCell(radek.cells.length);
mujdiv = document.createElement('div');
bunka.appendChild(mujdiv);
//vytvoření obrázku
tmp = document.createElement('img');
//adresa k náhledu
tmp.src = co.replace(/\/(.[^\/]+)\.([a-zA-Z]{3,4})/g,'/t_$1.$2');
//zobrazení obrázku
mujdiv.appendChild(tmp);
//vytvoření labelu název
tmplabel = document.createElement('label');
mujdiv.appendChild(tmplabel);
//vytvoření popisku název
tmp = document.createTextNode('Název ');
tmplabel.appendChild(tmp);
//vytvoření inputu název
tmp = document.createElement('input');
tmp.name = 'nazev['+i+']';
tmp.type = 'text';
tmplabel.appendChild(tmp);
//vytvoření labelu popis
tmplabel = document.createElement('label');
mujdiv.appendChild(tmplabel);
//vytvoření popisku popis
tmp = document.createTextNode('Popis ');
tmplabel.appendChild(tmp);
//vytvoření inputu popis
tmp = document.createElement('input');
tmp.setAttribute('name', 'popis['+i+']');
tmp.setAttribute('type', 'text');
// tmp.name = 'popis['+i+']';
//tmp.type = 'text';
tmplabel.appendChild(tmp);
//vytvoření inputu obrázku
tmp = document.createElement('input');
tmp.setAttribute('type', 'hidden');
tmp.setAttribute('name', 'fotka['+i+']');
tmp.setAttribute('id', 'fotka'+i);
tmp.setAttribute('value', co.replace('/media/galerie/', ''));
mujdiv.appendChild(tmp);
//vytvoření odkazu pro smazání
tmplabel = document.createElement('span');
tmplabel.className = 's';
tmplabel.onclick = function() {vyradit(this)};
//tmplabel.setAttribute('href', '');
bunka.appendChild(tmplabel);
tmp = document.createTextNode('Vyřadit');
tmplabel.appendChild(tmp);
}
}
function URL() {
tmp = '';
tmp += document.getElementById('inazev').value;
diakritika = 'áéíóúůýěščřžťňďÁÉÍÓÚŮÝŠČŘŽŤŇĎ';
bezdiakritika = 'aeiouuyescrztndAEIOUUYSCRZTND';
vystup = '';
for(i=0;i