




var base = "http://myretirement.retire.americanfunds.com";
var sslBase = "https://myretirement.retire.americanfunds.com";
if (base.length > 0 && sslBase.length > 0) {
	if (location.protocol == "http:" && sslBase.match(/^https:/)) {
		var secureUrl = sslBase + location.pathname;
		if (location.search != null && location.search.length > 0) {
			secureUrl += location.search;
 		}
		parent.top.location.href = secureUrl;
	}
}