Hello -

We use Microsoft Dynamics CRM Online to keep track of leads and contacts.  I need to enable this to run with-in our nopCommerce site (www.greenbenefits.com)  version 1.9.  I have tried the following optoins:

1.  creating a topic page and pasting the 'code' in code mode.  The script is blocked and nothing happens when we complete the form.
2.  Wentdirectly into the Contactus.aspx page  and inserted the code., but it's still blocked.  No input.

How do I get a third party or out-side form submission to work with-in nopCommerce 1.9.  Here is the code we need to use.

<!-- To submit leads to Microsoft Dynamics CRM Online, copy and paste the entire Html Component into the body of your web page. -->
            <form method="post" id="dl_leadForm" action="https&#58;&#47;&#47;landingpage.leads.dynamicssite.com&#47;PostLead.aspx?dl_lpai=ac14a2cf-7ed8-4c76-9620-602fb85d871b" enctype="application/x-www-form-urlencoded">
                <p><label for="dl_361416071267239939">*&nbsp;Company Name</label> <input type="text" id="dl_361416071267239939" name="dl_361416071267239939" maxlength="100" /> <!-- Required Field --> </p><p><label for="dl_361416071267239937">*&nbsp;First Name</label> <input type="text" id="dl_361416071267239937" name="dl_361416071267239937" maxlength="50" /> <!-- Required Field --> </p><p><label for="dl_361416071267239938">*&nbsp;Last Name</label> <input type="text" id="dl_361416071267239938" name="dl_361416071267239938" maxlength="50" /> <!-- Required Field --> </p><p><label for="dl_361416071267239941">*&nbsp;E-mail</label> <input type="text" id="dl_361416071267239941" name="dl_361416071267239941" maxlength="100" /> <!-- Required Field --> </p><p><label for="dl_361416071267239943">Street 1</label> <input type="text" id="dl_361416071267239943" name="dl_361416071267239943" maxlength="200" /> <!-- Optional Field --></p><p><label for="dl_361416071267239944">Street 2</label> <input type="text" id="dl_361416071267239944" name="dl_361416071267239944" maxlength="200" /> <!-- Optional Field --></p><p><label for="dl_361416071267239946">City</label> <input type="text" id="dl_361416071267239946" name="dl_361416071267239946" maxlength="50" /> <!-- Optional Field --></p><p><label for="dl_361416071267239945">*&nbsp;State&#47;Province</label> <input type="text" id="dl_361416071267239945" name="dl_361416071267239945" maxlength="50" /> <!-- Required Field --> </p><p><label for="dl_361416071267239947">ZIP&#47;Postal Code</label> <input type="text" id="dl_361416071267239947" name="dl_361416071267239947" maxlength="20" /> <!-- Optional Field --></p><p><label for="dl_361416071267239940">*&nbsp;Business Phone</label> <input type="text" id="dl_361416071267239940" name="dl_361416071267239940" maxlength="50" /> <!-- Required Field --> </p><p><label for="dl_361416071267239936">Mobile Phone</label> <input type="text" id="dl_361416071267239936" name="dl_361416071267239936" maxlength="20" /> <!-- Optional Field --></p><p><label for="dl_361416071267239942">Web Site</label> <input type="text" id="dl_361416071267239942" name="dl_361416071267239942" maxlength="200" /> <!-- Optional Field --></p><p><label for="dl_361416071267239948">Description</label> <textarea id="dl_361416071267239948" name="dl_361416071267239948" rows="5" ></textarea> <!-- Optional Field --></p>
                <input type="hidden" id="dl_qs" name="dl_qs" />
                <input type="hidden" id="dl_r" name="dl_r" />
                <input type="submit" onclick="document.getElementById('dl_leadForm').dl_qs.value = window.location.search;document.getElementById('dl_leadForm').dl_r.value = document.referrer;" value="Submit" />
            </form>