Hola
Se me ocurre algo como esto
Código javascript
:
Ver originalfunction abrir(boton){
alert(boton)
window.open("buscador_cli.php#"+boton,"",'width=800,heigh t=400,left=100, top=100,toolbar=0,scrollbars=1,statusbar=0,menubar =0,resizable=0');
}
function pegadatos(){ //en el archivo buscador_cli.php
var boton = window.location.hash;
alert("El boton presionado es: "+boton);
opener.document.Alta.id_clientejs.value = document.detalle.id_cliente.value;
... etc... (y asi cada campo que necesito)
}
Suerte