


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

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

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

function imprimir_info() 
{
window.print();
}


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

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

function abrir_ventana4(url)
{
newWindow = window.open(url,"subWind",
"status,height=500,width=950,top=150,left=250,scrollbars=yes");
newWindow.focus( );
};
////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////

function abrir_catalogo(url)
{
newWindow = window.open(url,"subWind",
"status,height=610,width=820,top=150,left=250,scrollbars=yes");
newWindow.focus( );
};