
function verifyLogout()
{
  msg = "Weet u zeker dat u wilt uitloggen?";
  return confirm(msg);
}

// Access to the text editor 
function GetEditorTextContents (EditorName) {
  var oEditor = FCKeditorAPI.GetInstance (EditorName);
  return (oEditor.GetXHTML());
}

// Set the content editor 
function SetEditorContents (EditorName, ContentStr) { 
  var elements = document.getElementsByName(EditorName);
  alert(EditorName);
  elements[0].value = '';
  elements[0].value = ContentStr;
}




