﻿function GetRandomFooter() {
    var imgCount = 15;
    var numRand = Math.floor(Math.random() * imgCount) + 1;
    document.getElementById("divFooterImage").style.backgroundImage = "url(upload/images/footers/footer_" + numRand + ".png)";
}