﻿// Archivo JScript
$(document).ready(function()
{
    _OnResize();
})

/*Reajustar el tamaño de los controles al tamaño de la pantalla.*/
function _OnResize ()
{
    // el contenedor principal es topcontainer.
    var FixedHeight = $("#head").height() + $("#PanelPieMaster").height()+15;
    var newHeight = $(window).height()-FixedHeight;
    
    $("#container").css ( 'height', newHeight );
    $("#visorCarreraContainer").css ( 'height', newHeight );
    $("#tabsSecc").css ('height', newHeight-70 );
    $("#PanelGaleria").css ('height', newHeight-120 );
    $("#PanelPresentacion").css ('height', newHeight-120 );
    $("#PanelResultados").css ('height', newHeight-120 );
    
    
    
    
}