

// Output a Random Frequently Asked Question

function GetRandomFAQ()
{   

    // The number in the array function has to match the number of FAQ
    // strings below.
    
    // If you add or remove FAQs, be sure to update the array number below.
    
    var random_text = new Array(21);
       
    // Set the number of text strings to zero to start
    var number = 0;
        
    // Incremental list of all possible Text
    // 1 
    random_text[number] = "At $122.7 billion in assets, is the CPP Investment Board now the largest single-purpose pension fund in Canada?"
    // 2
    random_text[number++] = "How does the CPP Investment Board measure its performance against a benchmark?"
    // 3
    random_text[number++] = "Why does the CPP Investment Board use a Total Portfolio Approach instead of specific asset allocations?"
    // 4
    random_text[number++] = "How are members of the Board of Directors appointed?"
    // 5 
    random_text[number++] = "What proportion of the assets are invested in stocks?"
    // 6
    random_text[number++] = "What is the projected growth of CPP assets?"
    // 7
    random_text[number++] = "What rate of return is necessary to maintain the sustainability of the Canada Pension Plan for generations to come?"
    // 8
    random_text[number++] = "Why don't you invest only in Canada to create economic growth and jobs?"
    // 9
    random_text[number++] = "Is the CPP Investment Board really independent of government?" 
    // 10
    random_text[number++] = "Why don't you use positive or negative screens when making investment decisions?"
    // 11
    random_text[number++] = "In March 2007, you announced your three core focus areas for PRI. Why did you choose these three areas?"
    // 12
    random_text[number++] = "How does your policy on responsible investing compare with that of other large investors in Canada?"
    // 13
    random_text[number++] = "Different groups of Canadians believe that the CPP Fund should not be invested in various industries or companies ranging from defence stocks and genetically modified foods to tobacco and open pit mining. Why don’t you take these views into account when investing the CPP Fund?"
    // 14
    random_text[number++] = "Why does the CPP Investment Board want to invest in infrastructure?"    
    // 15
    random_text[number++] = "Why is the CPP Investment Board interested in using derivatives?"
    // 16	
    random_text[number++] = "Why does the CPPIB invest in hedge funds?"
    // 17
    random_text[number++] = "Why doesn't the CPPIB use a currency hedging strategy?"
    // 18
    random_text[number++] = "Why is the CPPIB investing in funds focusing on distressed U.S. mortgages?"
    // 19
    random_text[number++] = "Why is the CPPIB investing in leveraged loans?"
    // 20
    random_text[number++] = "Why is the CPPIB interested in investing in private debt?"
    // 21
    random_text[number++] = "Why has executive compensation increased this fiscal year?"



    // Create a random number with limits based on the number
    // of possible random text strings
    var random_number = Math.floor(Math.random() * number);
            
    return random_text[random_number];           
    
}