var ventana = "";

function abrirPop(url,pars,nombre){
	if(ventana != nombre){
		nombre = window.open(url,nombre,pars);
	}
	else{
		ventana = nombre;
	}
	nombre.focus();
}
