/* Funciones Varias en JavaScript */


function AbrirVentana(url,dimensiones)
{   miventana=window.open(url,'SubVentana',dimensiones);miventana.focus(1); }

function SacaCombo(Tabla,Filtro,COrden,CResult,CMostrar,VDef,Titulo,FVar,AVen)
{   AbrirVentana('SCOMBO.SCOMBO?Tabla='+Tabla+'&Filtro='+Filtro+'&COrden='+COrden+'&CResult='+CResult+'&CMostrar='+CMostrar+'&VDef='+VDef+'&Titulo='+Titulo+'&FVar='+FVar,
                  'status=0,top=200,left=150,width='+AVen+',height=10'); }

function Calendario(nombrevariablefecha)
{   variablefecha=eval(nombrevariablefecha);
    if (!EsFechaBabel(variablefecha.value)) fecha="";
    else fecha=variablefecha.value;
    AbrirVentana("CALENDAR.CALENDAR?VAR="+nombrevariablefecha+"&FECHA="+fecha,"status=0,top=200,left=250,width=310,height=310"); }








