function cargarseccion(frame,url){
 if ( frame != "this"){
    eval('parent.' + frame + '.location.href=\'' + url + '\';');
    return;
  }else{
    eval('this.location.href=\'' + url + '\';');
    return;
  }
}

function phptoform(formulario,variable,valor){
  eval('document.forms[\"'+formulario+'\"].'+variable+'.value=\"'+valor +'\";');
  return;
}

function enviarformulario(formulario){
  document.forms[formulario].submit();
  return;
}

function cambiaraction(formulario,action){
  document.forms[formulario].action=action;
  return;
}

function abrirventana(ventana,nombre,opciones){
  if (nombre=='')
  {
    nombre='nueva';
  }
  if (nombre=='duplicacion')
  {
    return;
  }

  if (opciones=='')
  {
     sventana= window.open(ventana,nombre,"location=no,menubar=no,resizable=yes,scrollbars=yes,width=600,height=500");
  }
  else
  {
     sventana= window.open(ventana,nombre,"location=no,menubar=no,resizable=yes,scrollbars=yes,width=600,height=500");
  }
}
function abrirventana2(ventana,nombre,opciones){
  if (nombre=='')
  {
    nombre='nueva';
  }
  if (nombre=='duplicacion')
  {
    return;
  }

  if (opciones=='')
  {
     sventana= window.open(ventana,nombre,"location=no,menubar=no,resizable=yes,scrollbars=yes,width=600,height=500");
  }
  else
  {
      sventana= window.open(ventana,nombre,opciones);
  }
}

function posy(e) {
  if (navigator.appName == "Microsoft Internet Explorer"){
     winY = document.body.scrollTop;
  }
  else {
    winY = window.pageYOffset;
  }
  return winY;

}