It takes a village.
Filmmaker Training Program: training@qwocmap.org
Queer Women of Color Film Festival: festival@qwocmap.org
Film Distribution: distribution@qwocmap.org
Media & Press Kits: communications@qwocmap.org
Donor Relations & Contributions: events@qwocmap.org
Board of Directors: board@qwocmap.org
For all other general inquiries, please contact info@qwocmap.org.
#snippet_surveyForm .left{ color: #000000; font-size: 12px;}#snippet_surveyForm .control_head{ color: #000000; font-size: 20px; text-decoration: underline;}#snippet_surveyForm .leftLabel { font-size: 12px; color: #000000;}#snippet_surveyForm .control_textbox { font-size: 12px; color: #000000;}#snippet_surveyForm .control_captcha { font-size: 12px; color: #000000;}#snippet_surveyForm .control_text { font-size: 12px; color: #000000;}#snippet_surveyForm .control_textarea { font-size: 12px; color: #000000;}#snippet_surveyForm .control_checkbox { font-size: 12px; color: #000000;}#snippet_surveyForm .control_dropdown { font-size: 12px; color: #000000;}#snippet_surveyForm .control_radio { font-size: 12px; color: #000000;}#snippet_surveyForm .control_radio_donation { font-size: 12px; color: #000000;}#snippet_surveyForm .control_button { font-size: 12px; BACKGROUND-COLOR: ; color: #000000;}#snippet_surveyForm td.left { font-size: 12px; color: #000000;}#snippet_surveyForm .pagebreak{ font-size: 12px; color: #000000;}.snippet_tbmain{ height:100%; background: #FFFFFF;}#snippet_surveyForm span.required{ font-size: 12px; color: red;}
CONTACT QWOCMAP | |||
General | |||
var minimumAmount = 25;var minimumRecurring = 25;function validateNeonStandardEmail(){if(document.getElementById(“snippet_person.email1”) && document.getElementById(“snippet_person.email1”).value.trim().length>0){return validateSurveyEmail(document.getElementById(“snippet_person.email1”).value);}return true;}
function snippet_validateNeonForm() { if(document.getElementById(“snippet_direction”).value==”previous”){ return true;}if (!checkDOBDate()) {return false;}if(!validatePwd(‘account.loginPassword’)){return false;}if(!validateNeonStandardEmail()){ alert(“The Email Address is invalid.”); document.getElementById(“snippet_person.email1”).focus(); return false;}var input = document.getElementsByTagName(“input”);var select = document.getElementsByTagName(“select”);var textarea = document.getElementsByTagName(“textarea”);var allNodes = [];allNodes.push.apply(allNodes,input);allNodes.push.apply(allNodes,select);allNodes.push.apply(allNodes,textarea);for (var i = 0; i < allNodes.length; i++){ allNodes[i].disabled = false;} var buttons = document.getElementsByClassName("snippet_control_button"); for(var i=0;i<buttons.length;i++){ buttons[i].disabled = true; } return true;}function checkDOBDate(){ var month = document.getElementById("snippet_person.dobMM"); var day = document.getElementById("snippet_person.dobDD"); var year = document.getElementById("snippet_person.dobYYYY"); if (!(month && day && year) || (!year.value && !month.value && !day.value) ) {return true;} var dayV = day.value; var monthV = month.value; var yearV = year.value; var date = dayV + monthV + yearV; if(dayV.length=1 && monthV.length=1 && yearV.length == 4){ var reg = /^\d+$/; var r = date.match(reg); if(r==null){ alert(“Birth Date is invalid.”); return false; }else{ var d = new Date(year.value, month.value – 1, day.value); var c=(d.getFullYear() == year.value && (d.getMonth() + 1) == month.value && d.getDate() == day.value); if(!c){ alert(“Birth Date is invalid.”); return false; } } return true; } alert(“Birth Date is invalid.”); return false;}function populateValueFromRadio(textBoxId,radioId,hiddenObjId){var radios=document.getElementsByClassName(radioId);var hiddenObj = document.getElementById(hiddenObjId);var txtboxObj = document.getElementById(textBoxId);for(var i=0;i<radios.length;i++){ if(radios[i].checked){ hiddenObj.value=radios[i].value; }}if( txtboxObj != undefined && (hiddenObj.value == null || hiddenObj.value == "") ) { var dAmt = trimAll(removeCurrency(txtboxObj.value)); if (dAmt==""){ txtboxObj.focus(); } else { hiddenObj.value = dAmt; }}}function leavingTextBox(textBoxId,radioId,hiddenObjId){var radios=document.getElementsByClassName(radioId);var hiddenObj = document.getElementById(hiddenObjId);var txtboxObj = document.getElementById(textBoxId);for(var i=0;i13){ alert(‘Your donation amount is too large.’); return false; } if(isChecked(‘recurringFlag’, ‘1’)){ if(validateMinimumRecurring(dAmt) == false){ alert(“You have not entered the minimum recurring donation amount of $”+Number(minimumRecurring).toFixed(2)+’.’); return false; } }else{ if(validateMinimumAmount(dAmt)==false){ alert(‘You have not entered the minimum donation amount of $’+Number(minimumAmount).toFixed(2)+’.’); return false; } } hiddenObj.value = dAmt; return true; } } return true; }}}function validatePositiveAndZero(val){ if(Number(val) 0 && minimumAmount > val){ return false; } return true;}function validateMinimumRecurring(val){ if(minimumRecurring && minimumRecurring > 0 && minimumRecurring > val){ return false; } return true;}function isChecked(name, value){ var list = getAllByName(name); for(var i=0; i13){ alert(‘Your donation amount is too large.’); return false; } if(isChecked(‘recurringFlag’, ‘1’)){ if(validateMinimumRecurring(dAmt) == false){ alert(“You have not entered the minimum recurring donation amount of $”+Number(minimumRecurring).toFixed(2)+’.’); return false; } }else{ if(validateMinimumAmount(dAmt)==false){ alert(‘You have not entered the minimum donation amount of $’+Number(minimumAmount).toFixed(2)+’.’); return false; } } } } return true;}function associateToggle(val, elem){var elem = document.getElementById(elem);if(elem == null) return;if(val == 1){ elem.style.display=””;}else if(val == 0){ elem.style.display=”none”;}}associateToggle(0, ‘snippet_recurringDonation.recurringInterval1’);function validatePwd(property){ var item = document.getElementById(property);if(item != null && ‘account.loginPassword’ === property){var loginName = document.getElementById(‘snippet_account.loginName’);if(loginName != null && loginName.value.trim() != ”){ var regexp = /(?=\S*\d)\S{8,}$/; var blankRegexp = /\s/; if(!regexp.test(item.value) || blankRegexp.test(item.value)){ alert(‘Your password requires at least 8 characters, including at least one number. Spaces are not allowed.’); return false; } var retypePwd = document.getElementById(‘snippet_loginPasswordRetype’).value; if(item.value != retypePwd){ alert(‘The re-typed password doesn\’t match your original password’); return false; } } } return true;}