Passing value through open URL not working for me.

Passing value through open URL not working for me.

Im using the following function on each record in a view. This function opens the edit mode for the record and I want it to set the field "edit_design" equal to "Yes".

trouble is when i use the function the edit_design field is not set to Yes.

What is wrong with this function? The field "edit_design" is in the form Purchase_Request_Form and is a drop down menu with values "Yes" and "No".

Im sure this is something simple but i cant seem to find it. Please help!



void editDesign_upload(int ID, string edit_design)
{
    openUrl("https://creator.zoho.com/accountname/prod/#Form:Purchase_Request_Form?recLinkID=" + input.ID +"&edit_design=Yes&viewLinkName=Ready_for_Design&zc_LoadIn=dialog", "window", "width=1100px");
}