
// FUNCIONES UTILES

//----------------------------------------------- 
//  Funcion de Mensajes de Error. 

  
function Error( campo, texto ) { 
  campo.select(); 
  campo.focus(); 
  alert( texto );
} 


//-----------------------------------------------
// Funcion para definir los campos "accion" y 
// "subaccion", ademas del "submit".

function Accion( accion, subaccion ) {
  document.myform.accion.value = accion;
  document.myform.subaccion.value = subaccion;
  document.myform.submit();
  }
  
  
//----------------------------------------------- 
// Funciones para el manejo de sub-ventanas. 
 
function Ventana( _url, _titulo, _w, _h ) { 
  var _width = _w || 800; 
  var _height = _h || 600; 
  var _parametros = "directories=0,location=0,menubar=0,personalbar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,width="+_width+",height="+_height; 
  return window.open( _url, _titulo, _parametros ); 
} 
 
 
function Abre( _url ) { 
  var _ventana = Ventana( _url, "Recurso" ); 
}  

