Hi Flash peoples!

I'm working on some banner ads and I'm wondering if anyone here might know how to translate the following technical instructions to ensure the button actions are setup properly in the file I'm working on? Its been a while since I've used flash, so I want to make sure I'm doing it right, and so far, I've been told there are issues.

Button 1: Links to external URL

- The URL should be _level0.clickTAG
- Set the URL for an expression
- Set the target window to either _blank (to open a new window)

The code I added to Button 1:

Code:
on(release) {
	
	getURL(_level0.clickTAG, "_blank");
	
	}

Button 2: Hides the Flash object tag and replaces with HTML5 form

- Add a javascript call ADNAME.showForm();


The code I added to Button 2:

Code:
on(release) {
	
	getURL("javascript:ADNAME.showForm();");
	
	}