var id = 1;

function addParticipant()
{
	id += 1;
	if (id < 11)
	{
		$("member_line_" + id).setStyle({ display: 'block' })
	}
}
