﻿function borrarPrecios() {
    document.getElementById("ctrlShopPresupuesto_txtCosteTotal").innerText='';
    document.getElementById("ctrlShopPresupuesto_txtClichesMarcaje").innerText='';
    document.getElementById("ctrlShopPresupuesto_txtCosteUnitario").innerText='';
}

function cambiarPF(div){
     var obj = document.getElementById(div);
     if (obj.style.display == "") { 
        obj.style.display="none";
     }
     else{
        obj.style.display=""; 
     } 
} 

function cambiaColor(){
    document.getElementById('Encabezado_hyperMenuMiCesta').style.color='#013E8B';
}