hello all!

I am new around these parts, been searching and learning on the forum for a while now. I am VERY new to flash and are always looking to learn.

Now i believe this is a simple question but here it goes.
I have a button with the actions as follows:
Code:
on (rollOver) {
	if (_root.link<>1) {
		this.gotoAndPlay("s1");
	}
}
on (releaseOutside, rollOut) {
	if (_root.link<>1) {
		this.gotoAndPlay("s2");
	}
}
on (release) { 
	if (_root.link<>1) {
		_root["item"+_root.link].gotoAndPlay("s2");
		_root.link = 1;
	}
}
now i know what this does..for the most part. on rollover do this, when mouse leave go back to normal, when pressed? do this.
and i also now the basic get url code. i need to know how to enter, if button pressed and after animations go to test.html.

Now this swf file is inside a web layout i have using dreamweaver. the page i want this button to go to is for example test.html within my work space.

In flash how do i add this goto test.html? and do i need to enter the full name of the site? or can it be referenced?

I look forward to your support/advice!

Thanks
Brandon