function popup(div_id)
{
	if (div_id == '')
	{
		$('#popup_container').hide('slow');
	}
	else
	{
		$('#popup_content').empty().append($('#' + div_id).html());
		$('#popup_container').show('slow');
	}
}
