﻿/********************************************/
/******* SHOW HIDDEN ELEMENT**********/
/********************************************/
function show(item) {
    var contenedor = document.getElementById(item)

    if (contenedor.style.display == 'none') {
        contenedor.style.display = 'block'
    }
    else {
        contenedor.style.display = 'none'
    }
}
/********************************************/
/******* BUSCAR CONTROL TIPO INPUT **********/
/********************************************/
function findControl(ControlName) {
    var ret = null;
    var aControls = document.getElementsByTagName("input");
    if (aControls) {
        for (var i = 0; i < aControls.length; i++) {
            if (aControls[i].id.lastIndexOf(ControlName) ==
                aControls[i].id.length - ControlName.length &&
                aControls[i].id.length != ControlName.length &&
                aControls[i].id.lastIndexOf(ControlName) > 0) {
                ret = aControls[i];
                break;
            }
        }
    }
    return ret;
}
/********************************************/
/******* HANDLER SUMARIO ERRORES ************/
/********************************************/
function ShowSummaryErrors() {
    if (!Page_IsValid) {
        var s = "";
        var i;

        for (i = 0; i < Page_Validators.length; i++) {
            if (!Page_Validators[i].isvalid &&
                 typeof (Page_Validators[i].errormessage) == "string") {
                s += "<li>" + Page_Validators[i].errormessage + "</li>";
            }
        }
        if (s != "") {
            document.getElementById('errores').innerHTML = s;
            document.getElementById('error').style.display = 'block';            
        }
    }
}

/********************************************/
/******* HANDLER MENU CARREFOUR  ************/
/********************************************/

function showCompraOnLine() {
    document.getElementById('cajaCompraOnline').style.display = 'block';
    document.getElementById('aOnline').style.color = "#fff";    
}
function hideCompraOnLine() {
    document.getElementById('cajaCompraOnline').style.display = 'none';
    document.getElementById('online').style.backgroundImage = "url(/documentos/v2009/images/bkg_pest_comodin.png)";
    document.getElementById('aOnline').style.color = "#5F7077";    
}
function persistCompraOnline() {    
    document.getElementById('online').style.backgroundImage = "url(/documentos/v2009/images/bkg_pest_online.gif)";
    document.getElementById('aOnline').style.color = "#fff";    
}

function showTiendas() {
    document.getElementById('cajaTiendasCarrefour').style.display = 'block';
    document.getElementById('aTiendas').style.color = "#fff";    
}
function hideTiendas() {
    document.getElementById('cajaTiendasCarrefour').style.display = 'none';
    document.getElementById('tiendas').style.backgroundImage = "url(/documentos/v2009/images/bkg_pest_comodin.png)";
    document.getElementById('aTiendas').style.color = "#5F7077";    
}
function persistTiendas() {
    document.getElementById('tiendas').style.backgroundImage = "url(/documentos/v2009/images/bkg_pest_tiendas.png)";
    document.getElementById('aTiendas').style.color = "#fff";    
}