pero despues de que habro una o dos esta no vuelven abrir tengo que actualizar para poder que vuelvan abrir.
Código PHP:
// ----------------------------------------------------------------------------------------- //
// FUNCION BUSCAR CONTACTOS //
// ----------------------------------------------------------------------------------------- //
var miPopup
function BuscarContactos()
{
var nacionalidad=document.getElementById("txt_nacionalidad").value;
var empresa=document.getElementById("txt_empresa").value;
if (empresa=="") {
alert ("Primero debes seleccionar la empresa");
}
else
{
miPopup = window.open("buscarcontactos.php?empresa="+empresa+"&nacionalidad="+nacionalidad,"frame_datos",
"width=950,height=400,scrollbars=yes,fullscreen=no,top=50,left=200");
}
}
// ----------------------------------------------------------------------------------------- //
// FUNCION LISTA DE PRECIOS //
// ----------------------------------------------------------------------------------------- //
var miPopup
function ListaPrecios(identificador)
{
// frmcliente.txt_descuento.value= "";
var empresa=document.getElementById("txt_empresa").value;
var codcontacto=document.getElementById("txt_idcontacto").value;
if(empresa=="")
{
alert ("Debes seleccionar la empresa");
document.getElementById("slt_grupos").value=0;
}
else if(codcontacto=="")
{
alert ("Debes seleccionar un contacto");
document.getElementById("slt_grupos").value=0;
}
else
{
miPopup = window.open("listadeprecios.php?idgrupo="+identificador,"frame_",
"width=950,height=400,scrollbars=yes,fullscreen=no,top=50,left=200");
document.getElementById("slt_grupos").value=0;
}
}