﻿function EnableMoreCadDownloads()
{
    var CadCount = document.getElementById("CadDownloadsCount").value;
    
    if (CadCount >= 3)
    {
        for (var i = 3; i <= CadCount; i++)
        {
            document.getElementById("CadDownload" + i).style.display = "block";
        }

        document.getElementById("ProductDownloadsMoreLink").style.display = "none";
    }

}
