How do you make links out of MC buttons?

well i was wondering how do i link a MC button, i have it working with this:

this.button1.onRollOver = function() {
button1.gotoAndPlay("_over");
}

this.button1.onRollOut = function() {
button1.gotoAndPlay("_out");
}

but i can’t figure out how to link it to a actual page on my website. i was thinking thisbutton1.onClick = blah blah but i don’t think thats it. Thanks.