// JavaScript Document
function checkChangeArticle(form)
{
	var fouten = "The following error(s) were found:\n\n";
	var fout = false;
	var fckContent = FCKeditorAPI.GetInstance('content');

		if (form.title.value == "")
		{
				fout = true;
				fouten = fouten + "The title is missing\n";
    }
    
		if (fckContent.GetHTML() == "<br type=\"_moz\" />")
		{
        fout = true;
        fouten = fouten + "The content is missing\n";	   
    }
    
	if (fout)
		alert(fouten);
	else
		form.submit();
}