Hallo Alex,
cih aknn dein Problem nicht nachvollzeihen - habe deine Codeschnipsel mal in Testseiten eingebaut und der IE 6, XP SP 2 macht das, was er soll...
test.htm:
<html>
<head>
<title>Test</title>
</head>
<body>
<a href="./popup.htm?bla=blubb" target="_blank" onclick="window.open(this.href, this.target); return false;">Pop</a>
</body>
</html>
popup.htm:
<html>
<head>
<title>popup</title>
<script type="text/javascript">
function uebergabe(url)
{
var temp;
var meinString;
temp=window.location.search;
parameter=temp.substr(1,temp.length);
alert("Parameter: "+url+parameter);
opener.location.href = url+parameter;
}
</script>
</head>
<body>
<a onclick="uebergabe('./test.htm?');">Klick</a>
</body>
Der Fehler muss irgendwo anders liegen...
Gruß
Martin