// JavaScript Document
var value = 0;
function addF(fId,iType,iName,iValue) { //objednavka.tpl
	var f = document.getElementById(fId);
	value++;
	var div = document.createElement('div');
	div.setAttribute('id',iName+value);
	var i = document.createElement('input');
	i.setAttribute('type',iType);
	i.setAttribute('name',iName);
	i.setAttribute('style','text-align:left');
	var a = document.createElement('a');
	a.setAttribute('href','javascript:removeF(\"'+fId+'\",\"'+iName+value+'\")');	
	var linkText = document.createTextNode('odstranit');
	
	a.appendChild(linkText);
	div.appendChild(i);
	div.appendChild(document.createTextNode(" "));
	div.appendChild(a);
	f.appendChild(div);
}

function removeF(fId,id) { //objednavka.tpl
	var f = document.getElementById(fId);
	var el = document.getElementById(id);
	if (el) f.removeChild(el);
}
