Back to blog

Historic: Federal Agency Sues Over Anti-Gay Workplace Discrimination

The Equal Employment Opportunity Commission, a federal agency that ensures the enforcement of federal laws that make it illegal to discriminate on specified grounds against a job applicant or an employee has announced two lawsuits alleging anti-gay discrimination.

ABC News Reports:

The EEOC Philadelphia office says in its lawsuit against Scott Medical Health Center a gay employee quit after his manager used gay slurs. It says in a separate lawsuit in Baltimore a lesbian employee of IFCO Systems NA was fired after complaining her supervisor made comments regarding her sexual orientation and appearance.

In 2015 the EEOC ruled in a complaint brought to them by a federal employee that antigay discrimination is a form of sex discrimination that violates the 1964 Civil Rights Act. The EEOC had previously ruled in a case brought by Transgender Law Center for a federal job applicant that discrimination based on a person’s gender identity or expression is similarly prohibited.

The EEOC’s interpretation of the law is binding for the federal workforce and is entitled to significant respect from the courts when they are considering employment discrimination claims brought by private sector LGBTQ workers and state and local government employees.

Commenting on the EEOC’s new lawsuits, Lambda Legal’s Jenny Pizer said, “By filing these two cases against private companies, the EEOC is taking a next logical step in its role as enforcer of our federal civil rights laws.  The cases are tremendously important because they spotlight both the pervasive problem of antigay workplace harassment and the fact that the existing ban on sex discrimination, when properly understood, makes that abusive conduct illegal.”

/* ============================================= Timed Popup — Shows after a delay on every page Closes on: X button, overlay click, or Escape key Once per session (won't show again until new session) ============================================= */ document.addEventListener("DOMContentLoaded", function () { /* Target the popup elements by their Webflow classes */ const popup = document.querySelector(".modal-popup_wrapper"); const closeBtn = document.querySelector(".modal-popup_close"); const overlay = document.querySelector(".modal-popup_overlay"); /* Check if popup has already been seen this session */ if (sessionStorage.getItem("popupSeen")) return; /* Show the popup after a delay Change 4000 to adjust timing (1000 = 1 second) */ setTimeout(function () { popup.style.display = "flex"; popup.removeAttribute("aria-hidden"); closeBtn.focus(); /* Moves focus to close button for accessibility */ }, 4000); /* Close the popup and record the session */ function closePopup() { popup.style.display = "none"; popup.setAttribute("aria-hidden", "true"); sessionStorage.setItem("popupSeen", "true"); /* Prevents popup from showing again this session */ } /* Close triggers */ closeBtn.addEventListener("click", closePopup); /* X button */ overlay.addEventListener("click", closePopup); /* Clicking the dim background */ document.addEventListener("keydown", function (e) { if (e.key === "Escape") closePopup(); /* Escape key */ }); });