function colorize(element, color) {
	document.getElementById(element).style.background = color;
}

function selectLicense(license, app, num, rootPath, bCur) {
	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=2589922&recalcCoupon=Recalculate&ald=off&custom4="+window.location.hostname+"&bCur="+bCur;
                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=2589916&recalcCoupon=Recalculate&ald=off&custom4="+window.location.hostname+"&bCur="+bCur;
                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++;
            }
        }
    }
}
