/* 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";
	}

}