// JavaScript Document
function checkChangeMember(form)
{
	var fouten = "The following error(s) were found:\n\n";
	var fout = false;
	var fckDescription = FCKeditorAPI.GetInstance('description');

/*	if (form.fname.value == "")
	{
	   fout = true;
	   fouten = fouten + "The first name is missing\n";
    }
    
    if (form.lname.value == "")
	{
	   fout = true;
	   fouten = fouten + "The surname is missing\n";
    }
    
    if (form.func.value == "")
	{
	   fout = true;
	   fouten = fouten + "The function is missing\n";
    }
    	
	if (fckDescription.GetHTML() == "<br type=\"_moz\" />")
	{
        fout = true;
        fouten = fouten + "The description is missing\n";	   
    }
   */ 
	if (fout)
		alert(fouten);
	else
		form.submit();
}

