function cambiar(variable) {
        var imagen = document.getElementById("imagen_"+variable.id);
        imagen.style.visibility = "hidden";
        variable.style.backgroundColor = "white";

}


function limpia(){
	if(document.getElementById('buscarbox').value+"" == "Buscar...")
		document.getElementById('buscarbox').value="";
}

function ponerBuscar(){
        if(document.getElementById('buscarbox').value+"" == "")
                document.getElementById('buscarbox').value="Buscar...";
}


