
var ventana
function OpenWindow_Fichas(DatURL)
  {
   ventana=window.open(DatURL, "Detalle2", "toolbar=no,directories=no,menubar=no,status=yes,scrollbars=yes,width=400,height=500,resizable=no");
  }

function OpenWindow(DatURL)
  {
   ventana=window.open(DatURL, "Registro",  "toolbar=no,directories=no,menubar=no,status=yes,scrollbars=no,width=550,height=550,resizable=no,");
  }

function OpenWindow_p(DatURL)
  {
  ventana=window.open(DatURL, "Detalle", "toolbar=no,directories=no,menubar=no,status=yes,scrollbars=no,width=550,height=250,resizable=no");
  }

function SendForm(form)
  {
	form.submit();
  }

function CerrarReload(DatURL)
  {
  window.opener.location.href = DatURL;
  window.opener.location.reload;
  this.close();
  }

function CerrarReload2(DatURL)
  {
   //window.opener.parent.MAIN.location.href = DatURL;
   //window.opener.parent.MAIN.location.reload;
   this.close();
  }

function MenuFile(valor)
  {
   window.opener.formulario.p_menu.value = valor;
   window.close();
  }