function countForms() {
	var count = 0;
	while (document.getElementById("field"+count)) {
		count++;
	}
	return count;
}

function delForm(form) {
	document.getElementById("fieldArea"+form).outerHTML = "<div class=\"invisible\" id=\"fieldArea"+form+"\"><input name=\"fileList[]\" type=\"text\" value=\"HIDDEN\"></input></div>";
}

function newForm() {
	var formCount = countForms();
	var fcPlus = countForms()+1;

	var formHTML = new String("<div id=\"fieldArea"+formCount+"\"><p><input id=\"field"+formCount+"\" name=\"fileList[]\" type=\"file\" size=\"40\" ></input><br />Texti með mynd:<br /><input type=\"text\" size=\"40\" name=\"fText"+formCount+"\" /> <a href=\"javascript: delForm("+formCount+"); \">Eyða</a></p><div class=\"line\"></div><br /></div><div id=\"fieldArea"+fcPlus+"\"></div>");

	document.getElementById("fieldArea"+formCount).outerHTML = formHTML;
}

