ciao a tutti!

io da un bottone devo aprire un popup con:


on (release) {
popup('\\mio.html','titolo',800,590,20,20,'status= yes');
}


con

Movieclip.prototype.popup = function (nome,titolo,lar,alt,x,y,feat){
getURL("javascript:window.open('" + nome + "','" + titolo + "','width=" + lar + ",height=" + alt + ",screenX=" + x + ",left=" + x + ",screenY=" + y + ",top=" + y + "," + feat + "');void(0);");
}


nella pagina mio.html c'è un filmato e dovrei aprirlo al frame 21...
come si fa che non capisco?

grazie.....