function colorize(element, color) {
	document.getElementById(element).style.background = color;
}

function selectLicense(license, app, num, rootPath) {
	var i = 1;
	if (app == "sps") {
        if (license == "ent") {
            while (document.getElementById("buylink" + i) != null) {
                document.getElementById("radio-ent" + i).checked = true;
                document.getElementById("buylink" + i).href="https://www.plimus.com/jsp/buynow.jsp?contractId=2447148&numberOfPromotionContract=1&couponCode=tynhec&recalcCoupon=Recalculate&ald=off&bCur=USD&custom2=spsruent&custom4="+window.location.hostname;
                i++;
            }
        } else {
            while (document.getElementById("buylink" + i) != null) {
                document.getElementById("radio-pro" + i).checked = true;
                document.getElementById("buylink" + i).href="https://www.plimus.com/jsp/buynow.jsp?contractId=2437786&numberOfPromotionContract=1&couponCode=ghjhec&recalcCoupon=Recalculate&ald=off&bCur=USD&custom2=spsrupro&custom4="+window.location.hostname;
                i++;
            }
        }
	} else {
        if (license == "ent") {
            while (document.getElementById("buylink" + i) != null) {
                document.getElementById("radio-ent" + i).checked = true;
                document.getElementById("buylink" + i).href="shopping-cart.html?purchase="+app+"&edition=ent";
                i++;
            }
        } else {
            while (document.getElementById("buylink" + i) != null) {
                document.getElementById("radio-pro" + i).checked = true;
                document.getElementById("buylink" + i).href="shopping-cart.html?purchase="+app;
                i++;
            }
        }
    }
}