$(document).ready(function(){
    $(".blank").click(function(e){
        e.preventDefault();
        window.open($(this).attr('href'));
    });

    if ($('#corpo').height() < ($(window).height()-240)) {
        $('#corpo').css('height', ($(window).height()-240));
    }
        
    $('input[type=text], input[type=password]').focus(function() {
        var title = $(this).attr('title');
        if ($(this).val() == title) {
            $(this).val('');
        }
    }).blur(function() {
        var title = $(this).attr('title');
        if ($(this).val() == '') {
            $(this).val(title);
        }
    });
});
