Welcome to CW’s blog! Check out our posts and get a glimpse of what life can be like at CW! Explore interesting information about CW activities, clubs, and people across our community. To view blog posts from our President, Karen J. Smith click here.
Incoming freshmen who have been awarded scholarships for the September Class of 2019 were recognized at The College of Westchester (CW) Annual Scholars Award Ceremony & Reception. Students and their families heard from President, Mary Beth Del Balzo, Director of the Honors Program, Loretta Sinopoli, 2010 Alumni Katherine Alleyne Harris and a panel comprised of
As a college preparing students for entry into the regional workforce with highly regarded programs in business and computer technology, it was only natural to have a representative of Google visit The College of Westchester’s campus. Google, one of the most innovative companies in the world, has been expanding its presence in New York City
This summer has just flown by, but I did have the opportunity to speak with our Director of Security, Charles Boklan, as well as Roberto Carvajal, Manager of Facilities. As you might imagine, there is always quite a lot happening on a college campus, whether in the Fall or during the dog days of summer.
From job applications to virtual classroom communications to social interactions, email is an important part of daily functioning. To come across well and effectively connect with others, you need to keep certain basic rules in mind. This recent post on email etiquette from Career Girl Daily shares 6 must-knows you should commit to memory. Here’s
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Functional
Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
document.addEventListener("DOMContentLoaded", function() {
// Get all accordion toggle elements
var accordions = document.querySelectorAll('.accordion-toggle');
// Add click event listeners to each accordion toggle
accordions.forEach(function(accordion) {
accordion.addEventListener('click', function() {
// Get the panel-collapse element directly following this accordion-toggle
var panelCollapse = this.nextElementSibling;
// Check if this panel-collapse is currently open
var isOpen = panelCollapse.classList.contains('open');
// Remove 'open' class from all panel-collapses
accordions.forEach(function(acc) {
var collapse = acc.nextElementSibling;
collapse.classList.remove('open');
});
// Toggle 'open' class only on the clicked panel-collapse
if (!isOpen) {
panelCollapse.classList.add('open');
}
});
});
});