function GoSecure(frm)
{
	var proto = "";
	prefix = parent.location.protocol + '//';
	
	if (prefix == "https://")
	{proto = "/";}
	else
	{proto = "/secure/";}
		     
    if (frm == "contactus_annuities") location.href= proto + "contactus/contactus_annuities.html"
    else if (frm == "contactus_fixed_products" ) location.href = proto + "contactus/contactus_fixed_products.html"
    else if (frm == "contactus_life_insurance") location.href = proto + "contactus/contactus_life_insurance.html"
    else if (frm == "contactus_mutual_funds") location.href = proto + "contactus/contactus_mutual_funds.html"
    else if (frm == "contactus_general_inquiry") location.href = proto + "contactus/contactus_general_inquiry.html"
	else if (frm == "contactus_long-term_care") location.href = proto + "contactus/contactus_long-term_care.html"
    else if (frm == "contactus_long-term_care_retail") location.href = proto + "contactus/contactus_long-term_care_retail.html"
    else if (frm == "contactus_long-term_care_group") location.href = proto + "contactus/contactus_long-term_care_group.html"
    else if (frm == "contactus_life_traditional") location.href = proto + "contactus/contactus_life_traditional.html"
    else if (frm == "contactus_life_variable_non-traditional") location.href = proto + "contactus/contactus_life_variable_non-traditional.html"
    else if (frm == "contactus_life_estate_protection") location.href = proto + "contactus/contactus_life_estate_protection.html"
    else if (frm == "contactus_life_corporate_owned") location.href = proto + "contactus/contactus_life_corporate_owned.html"
    else if (frm == "contactus_life_m_group") location.href = proto + "contactus/contactus_life_m_group.html"
    else if (frm == "contactus_401_k_accounts") location.href = proto + "contactus/contactus_401_k_accounts.html"
    else if (frm == "contactus_diversity") location.href = proto + "contactus/contactus_diversity.html"
    else if (frm == "contactus_2nd_tier_reporting") location.href = proto + "contactus/contactus_2nd_tier_reporting.html"
    else if (frm == "contactus_safe_access_account") location.href = proto + "contactus/contactus_safe_access_account.html"
}
function GoUnSecure(frm)
{
	var proto = "/consumer/";
	
	prefix = parent.location.protocol + '//';
	
	if (prefix == "https://")
	{proto = "/consumer/";}
	else
	{proto = "/";}
    
    //var finalUrl = proto + "/contactus/" + frm + ".html";
	
	//location.href = finalUrl;     
    
    if (frm == "contactus_college_savings" ) location.href = proto + "contactus/contactus_college_savings.html"
    else if (frm == "contactus_institutional_investments") location.href = proto + "contactus/contactus_institutional_investments.html"
    else if (frm == "contactus_life_insurance") location.href = proto + "contactus/contactus_life_insurance.html"
    else if (frm == "contactus_long-term_care") location.href = proto + "contactus/contactus_long-term_care.html"    
    
}
