function elaborateQuickStart(){    var query = "";    var description = "Showing investments with the following criteria: ";    var QSminimumInvestment = $("#QSminimumInvestment").val();    var QSrecommendedTimeframe = $("#QSrecommendedTimeframe").val();    var QSobjective = $("#QSobjective").val();    var QScurrentParameter = 1;    if (QSminimumInvestment != "") {        if (QSminimumInvestment == "Less than $20,000") {            query += "&attName1=MinimumInvestment&attComp1=less&attValue1=20000";            QScurrentParameter++;        }        else             if (QSminimumInvestment == "$20,000 to $50,000") {                query += "&attName1=MinimumInvestment&attComp1=lessOrEqual&attValue1=50000&attName2=MinimumInvestment&attComp2=greaterOrEqual&attValue2=20000";                QScurrentParameter += 2;            }            else                 if (QSminimumInvestment == "More than $50,000") {                    query += "&attName1=MinimumInvestment&attComp1=greater&attValue1=50000";                    QScurrentParameter += 2;                }        description += QSminimumInvestment + "; ";    }    if (QSrecommendedTimeframe != "") {        query += "&attName" + QScurrentParameter + "=RecommendedTimeframe&attComp" + QScurrentParameter + "=equal&attValue" + QScurrentParameter + "=" + QSrecommendedTimeframe;        QScurrentParameter++;        if (QSrecommendedTimeframe == "No minimum") {            description += "Less than 3 years" + "; ";        }        else             if (QSrecommendedTimeframe == "3 years") {                description += "Between 3 and 5 years" + "; ";            }            else                 if (QSrecommendedTimeframe == "5 years") {                    description += "Between 5 and 7 years" + "; ";                }                else                     if (QSrecommendedTimeframe == "7 years") {                        description += "Longer than 7 years" + "; ";                    }    }    if (QSobjective != "") {        query += "&attName" + QScurrentParameter + "=Objective&attComp" + QScurrentParameter + "=equal&attValue" + QScurrentParameter + "=" + QSobjective;        QScurrentParameter++;        description += QSobjective + "; ";    }		if(query=="")query="&attName1=MinimumInvestment&attComp1=greaterOrEqual&attValue1=0";	    var fullUrl = "/mgl/au/personal/investments?qsText=" + escape(description) + "|qsQuery=" + escape(query);    if (window.catfind && window.catfind.doQuickStart) {        window.catfind.doQuickStart(query, description);    }    else {        location.href = fullUrl;    }}$(document).ready(function(){    window["quickStartIntro"] = "Quick filter for investments";});function stripeTable(){    if ($("#VC-catFindResultsData table.productComparison").size() == 0 && $("#VC-catFindResultsData .VC-singleProduct").size() == 0) {        if ($("#VC-productSearchNoRestuls").size() == 0) {            $("#VC-productSearchSubheading").append('<div class="VC-productSearchNoRestuls"><br />No products currently match your chosen criteria. For flexible investment options talk to one of our <a href="https://www.macquarie.com.au/mgl/au/personal/forms/request-an-appointment" onclick="openpopup(this);return false;">financial advisers</a>.</div>');        }    }    else {        $("#VC-productSearchNoRestuls").remove();    }}
