function centrarCapa(obj) {//v3.0
    an=parseInt(document.getElementById(obj).style.width);
    x=(document.body.clientWidth-an)/2;
    document.getElementById(obj).style.left=x;
}
