﻿var currTextContentHtml = null;

function setPromotionContent(sender, e) {
    var container = document.getElementById("textContentContainer");
    if (container != null && currTextContentHtml == null)
    {
        currTextContentHtml = container.innerHTML;
        
        container.innerHTML = "<span class=\"sectionTitle\">Le nostre offerte</span><span onclick=\"hidePromotionContent()\" class=\"closePromotionBox\">(chiudi box)</span>";
        container.innerHTML += "<br /><br />";
        container.innerHTML += "<img src=\"" + sender.src + "\" /><br /><br />";
        container.innerHTML += "<span class=\"sectionText\">" + sender.parentElement.parentElement.childNodes[2].childNodes[0].innerHTML + " " + sender.parentElement.parentElement.childNodes[2].childNodes[2].innerHTML  + "</span>";
    }
}

function hidePromotionContent() {
    var container = document.getElementById("textContentContainer");
    if (container != null)
    {
        container.innerHTML = currTextContentHtml;
        currTextContentHtml = null;
    }
}

function hideText(sender, e) {
    sender.value = "";
}

function goToEstimate(productCode, selectedModels) {
    var url = "Estimate.aspx?productCode=" + productCode;
    if (selectedModels != null && selectedModels.length > 0)
    {
        for (var i = 0; i < selectedModels.length; i++)
            url += "&model" + i + "=" + selectedModels[i];
    }
    window.location = url;
}

