function deleteMessage(el)
{
	if(confirm('Do you really want to delete this news post?')) {
		return true;
	}
	return false;
}