﻿<!--//--><![CDATA[//><!--

wireUpProspectiveInvestorFormPicker = function() {
    if (document.getElementById("selProspectiveInvestors") && document.getElementById("btnProspectiveInvestors")) {
        document.getElementById("btnProspectiveInvestors").onclick = sendToProspectiveInvestorForm;
    }
}

sendToProspectiveInvestorForm = function() {
    if (document.getElementById("selProspectiveInvestors")) {
        document.location.href = "https://www.ziegler.com/wealth_management/Investor_Questionnaire.aspx?id=" + document.getElementById("selProspectiveInvestors").value;
    }
}

wireUpProspectiveInvestorFormPicker();
//--><!]]>