mm .. tienes que hacer al reves creo amigo ..! una funcion donde te permita abrir la ventana emergente en general.. luego le pasas como parametro la url incluyendo los datos.... ejemplo.
Código PHP:
function AbrirSinScroll( url,alto,ancho,dato_url) {
web = url+'?'+dato_url;
izq = ((screen.width - ancho) / 2) + 150
arr = ((screen.height - alto) / 2) - 15
popupWin = window.open(web,"_blank", "scrollbars=yes,width=" + ancho + ",height=" + alto + ",top=" + arr + ",left=" + izq)
cont++;
}