Linking from this flash code

hi all, i’m not much chop at building complicated flash from scratch but have had to edit a whole bunch of code from other programmers and templates etc, i’m hoping someone can help clear up how to link from this 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;
}
}

basically its a colum of 8 buttons and all i need to do is make them link to various pages, eg button 8 just needs to link to contactus.html

hopefully its nothing too complicated! i tried the geturl code where i thought it should go but no joy

thanks guys