D
Domingo
this function goes well in IE5 and IE6, but in IE7 goes wrong, because window
displays the URL and I don't want people enter in the web without pass trough
the main window, doing "cut and paste" the url in a clean window
function AbrirVentana(documento,nombre_ventana){
var v_popup = 'popup'; // nombre por defecto para la ventana
if (AbrirVentana.arguments.length==2) {v_popup=nombre_ventana;}
v_sin=open(documento,v_popup,"status=no,toolbar=no,menubar=no,resizable=yes,directories=no,scrollbars=yes");
v_sin.focus();
return;
displays the URL and I don't want people enter in the web without pass trough
the main window, doing "cut and paste" the url in a clean window
function AbrirVentana(documento,nombre_ventana){
var v_popup = 'popup'; // nombre por defecto para la ventana
if (AbrirVentana.arguments.length==2) {v_popup=nombre_ventana;}
v_sin=open(documento,v_popup,"status=no,toolbar=no,menubar=no,resizable=yes,directories=no,scrollbars=yes");
v_sin.focus();
return;