New Button Help

I am running Opus 10.5.0.0 (x64 bit) on a Windows 7 Pro 64 bit laptop, and I am trying to make a button to make my life easier. I am not a programmer, so this might be pretty basic for most of you. I have a folder on my network share that I archive monthly. My button works, but I want it to pop up a prompt and as me "What folder path do you want?" and a second prompt to ask "What files do you want moved?"

Here is a snippit of what I am currently using..

[code]Set SOURCE=Left

Go "\10.5.2.8\Shared\AR - MEC\ALA\134" OPENINLEFT
Go "\10.5.2.8\Shared\AR - MEC\ALA\134.Final\2013" OPENINRIGHT
Copy MOVE "\10.5.2.8\Shared\AR - MEC\ALA\134\02-FEB" TO "\10.5.2.8\Shared\AR - MEC\ALA\134.Final\2013"

Go "\10.5.2.8\Shared\AR - MEC\AMR\139" OPENINLEFT
Go "\10.5.2.8\Shared\AR - MEC\AMR\139.Final\2013" OPENINRIGHT
Copy MOVE "\10.5.2.8\Shared\AR - MEC\AMR\139\02-FEB" TO "\10.5.2.8\Shared\AR - MEC\AMR\139.Final\2013"
Go "\10.5.2.8\Shared\AR - MEC\AMR\153" OPENINLEFT
Go "\10.5.2.8\Shared\AR - MEC\AMR\153.Final\2013" OPENINRIGHT
Copy MOVE "\10.5.2.8\Shared\AR - MEC\AMR\153\02-FEB" TO "\10.5.2.8\Shared\AR - MEC\AMR\153.Final\2013"[/code]

I know it is less than graceful, but initially I was doing it this way to see it work, so I could visually verify it worked.

"2013" would be the path variable to change and "02-FEB" would be the file variable. Since I am not a VB scripter, I was trying to keep this within the Opus command structure if possible.

Any help would be appreciated.

If found an answer myself.. if anyone reading this is curious.

@set Month {dlgstring|Enter the month number-month name to be moved}
@set Year {dlgstring|Enter year the month folder will be moved into}

Copy MOVE "\10.5.2.8\Shared\AR - MEC\ALA\134{$Month}" TO "\10.5.2.8\Shared\AR - MEC\ALA\134.Final{$Year}"

This will prompt me for the MONTH NUMBER-MONTH NAME (02-FEB from the prior post), then prompt me for the YEAR (2013 from the prior post) then it simply moves the folders I input to the destination path.