What we do today matters, and it means something to both celebrate and support all Native people and communities. We celebrate our rich history and culture, our resilience and our vision and hope for a better future. At the College Fund we believe education forever changes us and our world for the better. Together, let’s celebrate and support Native people and communities – and the positive impact education has on both.
$(document).ready(function(e) {
console.log('Running');
setTimeout('readSessionCookie()', 1000);
});
function readSessionCookie () {
var appeal = extractURLParameter('appeal');
console.log('Appeal code is '+appeal);
if(appeal){
setCookie('icfappeal', appeal, 1);
}
else{
appeal = getCookie('icfappeal');
}
if(appeal) {
try{
document.forms[0]['supporter.appealCode'].value = appeal;
setCookie('icfappeal', appeal, -1);
} catch(ex) {}
}
}
function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = "expires="+ d.toUTCString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/;domain=collegefund.org";
}
function getCookie(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for(var i = 0; i 1){
var pms = url[1].split('&');
if(pms.length > 0){
for (var k = 0; k < pms.length; k++){
pmk = pms[k].split('=');
if(pmk[0].toLowerCase() == pm){
return pmk[1];
}
}
}
}
return false;
}