﻿function updatePageDisplay() 
{
    jQuery(function() {
        var newHeight = $('#contentContainer').height();
        var nav = navigator.userAgent;

        $('#leftContainer').height(newHeight);

        if (nav.indexOf('6.0') > 0) {
            $('#rightContainer').height(newHeight + 40);
        }
        else {
            $('#rightContainer').height(newHeight);
        }       
    });
}

function clearTextBox() {
    jQuery(function() {
        $('.searchText')[0].value = '';
    });
}

