function checkSelectEmptiness(obj)
{
	if (obj.project.length == 0)
		return false;
	else
		return true;
}
