browser based inconsistencies using zc_LoadIn=dialog&zc_NextUrl=

browser based inconsistencies using zc_LoadIn=dialog&zc_NextUrl=

I have recently built an HTML view which works very well.  From this view I have two main options.  I can either select a listed record for editing or choose to add a new record.  Either option loads the appropriate form as a popup in Chrome. As far as I can tell, choosing to edit an existing record works reliably across Chrome, Firefox, and Explorer. However, choosing to add a new record is very inconsistent. 

In Chrome, when trying to add a new record, the correct Form opens as a popup but with dimensions that are wrong (the form is displayed much larger (wider and taller) than when it is called in edit mode.  Functionally, everything works as expected, just the formatting is strange. Editing a record in a popup works as expected.

In Explorer (most recent version), when adding, I am taken to a completely unrelated view that I suspect appears only because it is the first menu option under the active menu button and loads by default when that menu is active.  Where is the popup that I called? As in Chrome, editing a record in a popup works as expected.

In Firefox nothing happens at all when I try to add a new record in a popup. As in Chrome, Editing a record in a popup works as expected.

Is there any way to fix this? Perhaps it is due to some poor coding on my part. System has been shared with support. The HTML view that I am having problems with is called Search_Professionals.  Here is a snippet of code that isn't working properly. 

                <tr class=zc-viewrow>
                <td><%=proIdTitle%></td>
                <td><%=proIDFirst_Name%></td>
works OK <td><a href="#Form:Professional?zc_LoadIn=dialog&zc_NextUrl=#View:Search_Professionals&recLinkID=<%=proID.ID%>&viewLinkName=Professionals" class='zc-edit-a'><%=proID.Last_Name%></a></td>
                <td><%=proIDPhone%></td>
                <td><%=proIDCont_Addr%></td>
                <td><%=proIDCity%></td>
                <td><%=proIDEmail_Id%></td>
                <td><%=proIDOrganizationName%></td>
                </tr>
       <%}%>     
   <%}%>
        <table class=table zc-viewtable width=100% >
        <div class="leftSide">                    
NO   <form action="#Form:Professional?zc_LoadIn=dialog&zc_NextUrl=#View:Search_Professionals&viewLinkName=Professionals" class='zc-edit-a'></a></td>
        <button type="submit">I don't see a match so add a new record for '<%=Search%>' </button>
 

Thanks in advance for your help.

John