

Thanks for the clarification. I don't have a custom controller on the page. Is there anything I can change to get it to execute? <apex:page standardController="Engage_Short_Form__c">
<script type="text/javascript" src="/apex/dsfs__DocuSign_JavaScript"></script>
<script type="text/javascript">
function sendViaDocuSign() {
var CRL = '';
var DST = '';
var CES = '';
CRL = 'Email~{!JSENCODE(Engage_Short_Form__c.Partner_Email__c)};FirstName~{!JSENCODE(Engage_Short_Form__c.Partner_Contact__r.FirstName)};LastName~{!JSENCODE(Engage_Short_Form__c.Partner_Contact__r.LastName)};Role~Signer1,Email~jneilan@outbrain.com;FirstName~Test;LastName~Test2;Role~Signer 2';
DST = '0E9AB63C-62C0-4D01-B91A-E58849B7B573';
CES = 'Insertion Order signature request for {!JSENCODE(Engage_Short_Form__c.Partner_Legal_Name__c)}';
window.location.href = '"/apex/dsfs__DocuSign_CreateEnvelope?DSEID=0&STB=1&SourceID={!Engage_Short_Form__c.Id}&LA=0&CRL="+CRL+"&DST="+DST+"&CES="+CES';
}
</script>
<apex:form >
<apex:commandButton value="Send For Signature" onclick="sendViaDocuSign()"/>