// 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 abrir_ventana1(url,nomVentana)
{
newWindow = window.open(url,nomVentana,
"status,height=600,width=500,top=150,left=250,scrollbars=yes");
newWindow.focus( );
};

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

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