//Abre ventana con pagina About de OpenNet
function aboutAbreVentana()  {
  /*deshabilitado ahora es un popUp simple*/
  aboutAbreVentana2()
  /*
  //Calcula posicion de ventana
  if( document.all )  {
    var window_height = 410;
    var window_width  = 580;
  }
  else  {
    var window_height = 514;
    var window_width  = 580;
    var window_top    = ( screen.availHeight - window_height ) / 2;
    var window_left   = ( screen.availWidth  - window_width  ) / 2;
  }

  //Construye string con propiedades de ventana a abrir
  var window_prop = "";
  if( document.all )  {
    window_prop += "center=yes" + ";";
    window_prop += "dialogHeight=" + window_height + "px;";
    window_prop += "dialogWidth="  + window_width  + "px;"
    window_prop += "scroll=no; status=no;"

  }
  else {
    window_prop += "status=no,toolbar=no,menubar=no,location=no,resizeable=no,"
    window_prop += "height=" + window_height + ",";
    window_prop += "width="  + window_width  + ",";
    window_prop += "top="    + ( ( window_top  > 0 ) ? window_top  : 0 ) + ",";
    window_prop += "left="   + ( ( window_left > 0 ) ? window_left : 0 ) + ",";
    window_prop += "dependent=yes,";
  }


  //Abre ventana
  if( document.all )
    window.showModalDialog( '../../OpenNet/asp/pagAbout.asp', this,     window_prop );
  else
    window.open(            '../../OpenNet/asp/pagAbout.asp', "Acerca", window_prop );
*/
}


function aboutAbreVentana2()  {

  window.open( "../../OpenNet/asp/pagAbout.asp", "Acerca", "status=no,width=410,toolbar=no,menubar=no,location=no,resizeable=no,height=400px")

}

