function showData(){
    if($('texto').visible()){
        $('texto').hide();
        $('datos').show();
    }

    if($('datos').visible()==false){
        $('datos').show();
    }

    return true;
}

function showText(){
    if($('datos').visible()){
        $('datos').hide();
        $('texto').show();
    }

    if($('texto').visible()==false){
        $('texto').show();
    }

    return true;
}