Conditional statement

i setup this conditional statement.
my intention was that if the object
foot_mc was on point0_mc then it will go to frame 5

OR

if foot_mc was on point1_mc it will go to frame 10…

function Oncheck(evt:MouseEvent):void
{
if(foot_mc == point0_mc) return;
{
gotoAndStop(5);
}
if(foot_mc == point1_mc) return;
{
gotoAndStop(10);
}
if(foot_mc == point2_mc) return;
{
gotoAndStop(15);
}
}

i get NO errors but it will always go to frame 15… instead i want it to go to the selective frames depending on where foot_mc is…

Thank you