// JavaScript Document

function cerrar_popup() 
{
window.opener.location.reload();
window.close();
}

function activa_celda(obj) 
{
 obj.style.backgroundColor='#EFF2F5';
}

function desactiva_celda(obj) 
{
 obj.style.backgroundColor='';  
}


/////////////////////////////////////////////////////////

function agregar_pagina(url,nomVentana)
{
newWindow = window.open(url,nomVentana,
"status,height=230,width=650,top=150,left=250,scrollbars=yes");
newWindow.focus( );
};

/////////////////////////////////////////////////////////////////////
function ver_pagina(url,nomVentana)
{
newWindow = window.open(url,nomVentana,
"status,height=650,width=977,top=150,left=250,scrollbars=yes");
newWindow.focus( );
};
//////////////////////////////////////////////////////////
function eliminar_pagina(url,nomVentana)
{
newWindow = window.open(url,nomVentana,
"status,height=40,width=40,top=150,left=250,scrollbars=yes");
newWindow.focus( );
};
//////////////////////////////////////////////////////////
function editar_pagina(url,nomVentana)
{
newWindow = window.open(url,nomVentana,
"status,height=650,width=977,top=150,left=250,scrollbars=yes");
newWindow.focus( );
};
//////////////////////////////////////////////////////////
function file_manager(url,nomVentana)
{
newWindow = window.open(url,nomVentana,
"status,height=650,width=977,top=150,left=250,scrollbars=yes");
newWindow.focus( );
};
//////////////////////////////////////////////////////////
function abrir_ver_mensaje(url,nomVentana)
{
newWindow = window.open(url,nomVentana,
"status,height=480,width=640,top=150,left=250,scrollbars=yes");
newWindow.focus( );
};

//////////////////////////////////////////////////////////
function abrir_ficha(url,nomVentana)
{
newWindow = window.open(url,nomVentana,
"status,height=480,width=640,top=150,left=250,scrollbars=yes");
newWindow.focus( );
};