﻿function swapbox(id) {
    if (document.getElementById('inf' + id).style.display == '') {
        document.getElementById('Img' + id).src = "images/btn_down.jpg";
        document.getElementById('inf' + id).style.display = 'none';
    } else {
        document.getElementById('Img' + id).src = "images/btn_up.jpg";
        document.getElementById('inf' + id).style.display = '';
    }
}
