Contact

Let’s Connect – We’re Excited To Hear From You

Whether you have questions, need more information, or want to get involved, feel free to reach out to us! Our FAM team is here to assist you and provide the support you need. Contact us today, and let’s work together to make a difference in the lives of foster children and families in our community.

Name(Required)
Email(Required)
Are you interested in community partnership, events, or for us to provide your business with more information?(Required)
I'm interested in:
Do you live in Washoe County?(Required)
Are you an approved foster or adoptive parent in the state you reside?(Required)
Did you watch the information session video?(Required)
document.addEventListener('DOMContentLoaded', function () { function calculateAge(birthdate) { const today = new Date(); const birthDate = new Date(birthdate); let age = today.getFullYear() - birthDate.getFullYear(); const m = today.getMonth() - birthDate.getMonth(); if (m < 0 || (m === 0 && today.getDate() < birthDate.getDate())) { age--; } return age; } const age1 = calculateAge("1995-04-15"); const age2 = calculateAge("2000-08-22"); const age3 = calculateAge("2010-11-10"); const ageDiv = document.createElement("div"); ageDiv.textContent = `Ages ${age1} & ${age2} & ${age3}`; ageDiv.style.fontFamily = "'Mulish', sans-serif"; ageDiv.style.fontWeight = "700"; ageDiv.style.fontSize = "1.125rem"; ageDiv.style.color = "#006085"; ageDiv.style.margin = "1rem 0"; // Insert into main content area or fallback to body const main = document.querySelector('main') || document.body; main.appendChild(ageDiv); });