function elozmeny(r_id,m_id)
{
	window.open("forum_show_reply.php?reply_id="+r_id+"&msg_id="+m_id+"","elozmeny","");
return false;
}

var docIndex=1;
function addMoreDoc()
{

	if (obj=document.getElementById('dokumentum_div_id'))
	{
		//var picHTML='<div id="dokumentum_'+docIndex+'_div_id"><font size="2">Új dokumentum: </font><input type="file" name="doc[]"> <a class="submit" href="#" onclick="return(removeDoc('+docIndex+'))">eltávolít >></a></div>';
		//obj.innerHTML=obj.innerHTML+picHTML;
		var newLine = document.createElement('div');
		newLine.innerHTML = 'Új dokumentum: <input type="file" name="doc[]"> <a class="delete" href="#" onclick="return(removeDoc('+docIndex+'))">eltávolít >></a><br/>Dokumentum leírás: <input type="text" style="width: 374px;" name="doc_text[]"/><hr/>';
		newLine.id = 'dokumentum_'+docIndex+'_div_id';
		obj.appendChild(newLine);
		docIndex++;
	}

return false;	
}
function removeDoc(id)
{
	if (obj=document.getElementById('dokumentum_'+id+'_div_id'))
	{
		obj.innerHTML="";
	
	}
return false;	
}

function ksz_popup()
{

	window.open("kulcsszavak.php","","width=750,height=500,resizable=1,status=0,scrollbars=yes,top=100,left=350,toolbar=0");
return false;	

}

