function kepfeltoltes(imgId) {
	var form = document.getElementById('iroda');
	form.target = 'target_upload';
	form.action = '/ajax/pictureUpload?fileInputName='+imgId;
	form.submit();
	form.target = "";
	form.action = '';
	document.getElementById(imgId+'_div').style.display = '';
	document.getElementById(imgId+'_browse').style.display = 'none';
}

function keptorles(imgId) {
	document.getElementById(imgId+'_div').style.display = 'none';
	document.getElementById(imgId+'_browse').style.display = 'block';	
	var inp = document.createElement('input');
	inp.type = 'hidden';
	inp.name = 'del_images[]';
	inp.value = document.getElementById(imgId+'_hidden').value;
	document.getElementById(imgId+'_div').appendChild(inp);
}

function newFileFunction(imgUrl, imgId) {
	var img = document.getElementById(imgId+'_img');
	img.style.display = "block";
	img.src = imgUrl;
	var hidden = document.getElementById(imgId+'_hidden');
	hidden.value = imgUrl;
}

function dump_newFileFunction(imgUrl, imgId) {
	var img = document.getElementById(imgId+'_img');
	img.style.display = "block";
	img.src = imgUrl;
	var hidden = document.getElementById(imgId+'_hidden');
	hidden.value = imgUrl;
}
