/* fix application title
----------------------------------------------- */
var supportLink = document.getElementById("cgsupportlink");
var progTitle   = document.getElementById("appTitle");

if ((supportLink) && (progTitle)) {
	if (supportLink.href.indexOf('x_proposal_type_id=8832') != -1) {
		progTitle.firstChild.nodeValue = "Event Sponsorship Request";
	}
	else if (supportLink.href.indexOf('x_proposal_type_id=8814') != -1) {
		progTitle.firstChild.nodeValue = "Business-Related Donation Request";
	}
	else if (supportLink.href.indexOf('x_proposal_type_id=26684') != -1) {
		progTitle.firstChild.nodeValue = "Funding Request";
	}
	else if (supportLink.href.indexOf('x_proposal_type_id=14939') != -1) {
		progTitle.firstChild.nodeValue = "International Higher Education Grant";
	}
	else if (supportLink.href.indexOf('x_proposal_type_id=26014') != -1) {
		progTitle.firstChild.nodeValue = "Profile Update";
	}
}
