/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function showCapa (id) {
    if ($(id).css("display") == 'none') {
        $(id).show(); 
    }else
        $(id).hide(); 
}
function fondoInputBlanco (id) {
        $(id).css("background-color","#fff");
}
function fondoInputPredeterminado (id) {
        $(id).css("background-color","#F0F1EB");
}
