﻿var com;
if (!com) com = {};
else if (typeof com != "object")
    throw new Error("com already exists and is not an object");

if (!com.restylaneusa) com.restylaneusa = {};
else if (typeof com.restylaneusa != "object")
    throw new Error("com/restylaneusa already exists and is not an object");

if (!com.restylaneusa.Pages) com.restylaneusa.Pages = {};
else if (typeof com.restylaneusa.Pages != "object")
    throw new Error("com/restylaneusa/Pages already exists and is not an object");


com.restylaneusa.Pages = {
    "/" : "Home Page",
    "/default.aspx" : "Home Page",
    "/about_medicis_aesthetics.aspx" : "About Medicis Aesthetics",
    "/contact_us.aspx" : "Contact Us", 
    "/instructions_for_use.aspx" : "Instructions for Use",
    "/privacy_policy.aspx" : "PRIVACY POLICY",
    "/restylane_rewards.aspx" : "Restylane Rewards",
    "/sign_in.aspx" : "Sign in",
    "/sign_out.aspx" : "Sign out",
    "/sign_up_now.aspx" : "Sign up now",
    "/site_map.aspx" : "Site Map",
    "/terms_of_use.aspx" : "Terms of Use",

    "/faqs": "FAQS",
    "/faqs/" : "FAQS",
    "/faqs/default.aspx" : "FAQS",
    
    "/hcp/confirm.aspx" : "HCP Confirmation",
    "/hcp/default.aspx" : "HCP Landing Page",
    
    "/real_experiences" : "Miravs Story",
    "/real_experiences/" : "Miravs Story",
    "/real_experiences/miravs_story.aspx" : "Miravs Story",
    "/real_experiences/stacys_story.aspx" : "Stacys Story",
    "/real_experiences/vickis_story.aspx" : "Vickis Story",
    
    "/restylane_rewards/my_restylane_rewards_account.aspx" : "Restylane Rewards - My Account",
    
    "/start_now/" : "Find a Doctor",
    "/start_now/default.aspx" : "Find a Doctor",
    "/start_now/find_a_doctor.aspx" : "Find a Doctor",
    "/start_now/find_a_doctor_results.aspx" : "Find a Doctor - Results",
    "/start_now/follow_the_restylane_regimen.aspx" : "Follow the Restylane Regimen",
    "/start_now/questions_to_ask_your_doctor.aspx" : "Questions to ask your doctor",
    
    "/the_restylane_family/" : "About the Restylane Family of Products",
    "/the_restylane_family/default.aspx" : "About the Restylane Family of Products",
    "/the_restylane_family/about_the_restylane_family_of_products.aspx" : "About the Restylane Family of Products",
    "/the_restylane_family/about_restylane_and_perlane.aspx": "About Restylane and Perlane",
    "/the_restylane_family/about_restylane-l_and_perlane-l.aspx": "About Restylane-L and Perlane-L",
    "/the_restylane_family/where_can_the_restylane_family_be_used.aspx": "Where can the Restylane Family be used?",
    "/the_restylane_family/history_and_safety.aspx": "History and safety",
    "/the_restylane_family/how_long_does_treatment_last.aspx": "How long does treatment last?",
    
    "/the_restylane_regimen/": "About the Restylane Regimen",
    "/the_restylane_regimen/default.aspx": "About the Restylane Regimen",
    "/the_restylane_regimen/about_the_restylane_regimen.aspx": "About the Restylane Regimen",
    "/the_restylane_regimen/what_is_full_correction.aspx": "What is full correction?",
    "/the_restylane_regimen/achieving_full_correction.aspx": "Achieving full correction with the Restylane Regimen",
    "/the_restylane_regimen/about_treatment.aspx": "About treatment",

    "/restylane_rewards": "Restylane Rewards - Login Landing",
    "/restylane_rewards/": "Restylane Rewards - Login Landing",
    "/restylane_rewards/default.aspx" : "Restylane Rewards - Login Landing",
    "/restylane_rewards/thank_you.aspx": "Restylane Rewards - Registration Thank You",
    "/promotional_landing.aspx" : "Redemption Promotion Landing",
    "/offer_terms_and_conditions.aspx": "Redemption Offer Terms and Conditions",
    "/rebate_form.aspx" : "Redemption Form (Customized)",

    "/support/dialogs/tell_a_friend_iframe.aspx": "Tell a Friend (Modal)",

    "/shareyoursecret/default.aspx" : "Share Your Secret (Forward)",
    "/shareyoursecret/": "Share Your Secret (Forward)",
    "/shareyoursecret": "Share Your Secret (Forward)",
    
    "/share/default.aspx": "Share (Forward)",
    "/share/": "Share (Forward)",
    "/share": "Share (Forward)",

    "/rewards/default.aspx": "Rewards (Forward)",
    "/rewards/": "Rewards (Forward)",
    "/rewards": "Rewards (Forward)"
};

com.restylaneusa.Pages.Lookup = function(path) {
    var return_val = (com.restylaneusa.Pages[path] != undefined) ? com.restylaneusa.Pages[path] : path;
    return return_val;
}
