meisterB: open.window + this.href

Beitrag lesen

Hallo Leute, mal wieder hab ich ein kleines Problem:
Ich hab folgendes im Quellcode:
<script>

function winconfirm(){
question = confirm("Datensatz wirklich entfernen?")
if (question != "0"){
  window.open(this.href, "NewWin", "toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=no,copyhistory=yes,width=635,height=260")
}
}
</script>

<?
echo '<a href="../../admin/admin/phpSQL/1TierProdDELETE.php?Prod='.$row["produkt_Nr"].'" onClick="winconfirm(); return false;"")"><img src="./imgs/papierkorb.gif" alt="Entfernen" width="32" height="32" border="0"></a>';
?>

Nur leider bekomm ich den unteren href nicht in die Funktion. Wie kann man das machen?? Oder geht das garnicht?