ciao a tutti...
qualcuno puo aiutarmi a capire perche non riesco ad aprire una finestra di popup da una pagina contenuta in un frame?
<html>
<head><title>:: [[ ERREB GAMES ]] ::</title>
</head>
<frameset cols='*,770,*' border='0' frameborder='0' framespacing='0'>
<frame name='left' src='left.htm' marginwidth='0' marginheight='0' scrolling='no' frameborder='0' noresize>
<frameset rows="98,*,40" framespacing="0" border="0" frameborder="0">
<frame name="intestazione" marginwidth='0' marginheight='0' scrolling="no" noresize noborder target="intestazione" src="testata.asp">
<frameset cols="204,566">
<frame name="menu" marginwidth='0' marginheight='0' noresize noborder src="menusx.asp" scrolling="auto">
<frame name="principale" marginwidth='0' marginheight='0' noborder src="home.asp" scrolling="auto" target="_self">
</frameset>
<frame name='sotto' src='bottom.htm' marginwidth='0' marginheight='0' noborder scrolling="auto" target="_self">
</frameset>
<frame name='right' src='right.htm' marginwidth='0' marginheight='0' scrolling='no' frameborder='0' border='0' noresize>
</frameset>
</html>
la pagina che richiama la popup si trova nel frame "principale":
<script language="javascript">
function popup(idArticolo){
var op_tool = 0;
var op_loc_box = 0;
var op_dir = 0;
var op_stat = 0;
var op_menu = 0;
var op_scroll = 0;
var op_resize = 0;
var op_wid = 0;
var op_heigh = 0;
op_wid = 500;
op_heigh = 650;
var option = "toolbar=" + op_tool + ",location=" + op_loc_box +
",directories="
+ op_dir + ",status=" + op_stat + ",menubar=" + op_menu + ",scrollbars="
+ op_scroll + ",resizable=" + op_resize + ",width=" + op_wid + ",height="
+ op_heigh;
window.open(descrizioneArticolo.asp?id_articolo=' + idArticolo, idArticolo, option );
}
</script>
[img]images/info.gif[/img]