Martin: Frames und Popup-Fenster

Beitrag lesen

Hallo Wahsaga,
Danke für die Antwort
Hier wie ich hoffe nicht mehr als der relevante code...

zuerst der Frameset: (wiedermal Dreamweaver UltraDev .-) tut mir leid)

<script language="JavaScript">
<!--
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}
//-->
</script>
</head>
<frameset rows="154,*" frameborder="NO" border="0" framespacing="0" cols="*">
  <frame name="topFrame" scrolling="NO" src="headnav.htm" marginwidth="0" marginheight="0" >
  <frame name="mainFrame" src="start.htm" marginwidth="0" marginheight="0" scrolling="NO">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" onLoad="MM_displayStatusMsg('botschaft für rotgrün');return document.MM_returnValue">
</body></noframes>
</html>
-----------------------------
Von diesem Frameset aus lassen sich die Funktionen Bildertausch function MM_swapImg (navigation) und  MM_showHideLayers gut ansteuern... aber

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
reagiert einfach nicht... ohne fehlermeldung!

Schönen Gruß,  Martin