//
//  VENTANAS
//  Compatible IE y NS.
//
//

//
// FUNCION 'ventanas_abrir()'
//
//
// Parametros:
//   direccion -> 'raidhipico/index.html'
//   nombre    -> 'ventana_1'
//   ancho     -> 29
//   alto      -> 23
//   scrolling -> true o false
//
function ventanas_abrir(direccion, nombre, ancho, alto, scrolling) {
     var propiedades = "menubar=yes,statusbar=yes,locationbar=yes,"
                     + "toolbar=yes,personalbar=yes,status=yes,scrollbars=yes,"
     propiedades += "width=" + ancho + ",height=" + alto;	
     open(direccion, nombre, propiedades);
}


//
// FUNCION 'ventanas_abrirMax()'
//
// Permite siempre maximizar la ventana, tanto en IE como NS.
// 
// Parametros:
//   direccion -> 'raidhipico/index.html'
//   nombre    -> 'ventana_1'
//
function ventanas_abrirMax(direccion, nombre, ancho, alto) {
     var propiedades = "left=0,top=0,height=" + alto + ",width=" + ancho + ",";
     propiedades += "scrollbars=auto,";
     propiedades += "resizable=yes";
     open(direccion, nombre, propiedades);
}
