Adding a Box custom component or template to my page

HI Rob,

Thank you for your help. The visualforce component that is added to our standard opportunity page contains this:

<apex:page standardController=“Opportunity” showHeader=“false”>
<apex:stylesheet value=“{!$Resource.box__BoxFilesCSS}” />
<apex:iframe src=“https://www.box.com/widget_sso/salesforce?token=%7B%22server_url%22%3A%22{!URLENCODE(
$Api.Partner_Server_URL_120)}%22%2C%22session_id%22%3A%22{!URLENCODE($Api.Session_ID)}%22%7D
&salesforce_object_typed_id={!$CurrentPage.parameters.Id}
&partner_object_type=Opportunity&partner_object_name={!URLENCODE(opportunity.name)}
&partner_object_email=&partner_object_id={!$CurrentPage.parameters.Id}
&open_new_window=1&partner_user_id={!URLENCODE($User.Id)}
&partner_user_name={!URLENCODE($User.FirstName)}%20{!URLENCODE($User.LastName)}
&partner_user_email={!URLENCODE($User.Email)}
&email_recipients=&debug=0” width=“100%” height=“100%” scrolling=“true” id=“theIframe”/>
</apex:page>

Below is the Iframe information from when I inspected the element. That first piece (frame id=“066E0000000Vq9c”) is the ID of the Visualforce component referenced above. I can get to Box through SKUID, but it is creating a new box folder with the same name instead of opening the existing one. I really appreciate your help on this!