var oVentana; function bAbrirVentana (sParURL, nParLeft, nParTop, nParWidth, nParHeight, sParOpciones, sParID) { if (arguments.length < 1) { return false; } if (typeof (nParLeft) == "number" && typeof (nParTop) == "number" && typeof (nParWidth) == "number" && typeof (nParHeight) == "number"){ // Establecer las opciones sOpciones = "width=" + nParWidth + ",height=" + nParHeight; sOpciones += oNavegador.bEsNS ? (",screenX=" + nParLeft + ",screenY=" + nParTop) : (",left=" + nParLeft + ",top=" + nParTop); sOpciones += (sParOpciones == null) ? '' : ',' + sParOpciones; // Creación de la ventana if ( oVentana && ! oVentana.closed && oVentana.name == sParID) oVentana.close(); oVentana = window.open (sParURL, (sParID == null) ? "_ventanaAyuda" : sParID, sOpciones); if (oVentana) oVentana.focus(); return (oVentana); } else return (false); }