var actpart = '';
function showMore(whichEl){
	i = 0;
	for(i=1;i<=13;i++)
	{
		document.getElementById("part_"+i).style.display = "none";
	}
	if(actpart == whichEl)
	{
		document.getElementById(whichEl).style.display = "none";
		actpart = '';
	}
	else
	{
		document.getElementById(whichEl).style.display = "block";
		actpart = whichEl;
	}
}

function openPic(path,x,y,name)
{
	window.open("http://fodorhr.webinform.hu/openpic.php?path="+path+"&picalt="+name,'','width='+x+',height='+y+',scrollbars=0');
}
