in pratica sto usando la funzione popup

fscommand("allowscale", false);
function openBRwindow(url, name, toolbar, location, status, menubar, scrollbars, resizable, width, heigth) {
pend++;
// link, titolo, toolbar, location, status, menubar, scrollbars, resizable, width, heigth
features = (toolbar) ? 'toolbar=yes,' : 'toolbar=no,';
features += (location) ? 'location=yes,' : 'location=no,';
features += (status) ? 'status=yes,' : 'status=no,';
features += (menubar) ? 'menubar=yes,' : 'menubar=no,';
features += (scrollbars) ? 'scrollbars=yes,' : 'scrollbars=no,';
features += (resizable) ? 'resizable=yes,' : 'resizable=no,';
getURL("javascript:window.open('"+url+"','"+name+" _"+pend+"','"+features+"width="+width+", height="+heigth+"');void(0);");
}


e nel tasto:

on (release) {
// link, titolo, toolbar, location, status, menubar, scrollbars, resizable, width, heigth
openBRwindow('http://www.worldfantasy.it/~gogeta/bw/foto1.swf', 'Foto1', toolbar, location, status, menubar, scrollbar, resizable, 300, 320);
}

solo ke siccome uso un redirect del dominio nella modalità frame, quando apro il sito da http://www.bloodwarriors.com vado su photos e provo a cliccare sula prima foto con questo tipo di codice non funziona.. mentre se ci vado dallo spazio reale cioè http://www.worldfantasy.it/~gogeta/bw/ lo script funziona..
come posso risolvere ?