// send heavier info
function sendHeavier(param) {

    var img = document.createElement('img');

    img.setAttribute('src', location.protocol + param);
    img.setAttribute('id', 'img');
    img.setAttribute('width', 1);
    img.setAttribute('height', 1);

    document.body.appendChild(img);
}

// remove Img tag of heavier info
function removeImg() {

    if (document.getElementById('img')) {
        document.body.removeChild(document.getElementById('img'));
    }
}

