function zoomPopUp()
{
    document.getElementById('zoom').style.zIndex = "4242";
    document.getElementById('zoom').style.display = "block"
}

function zoomPopUnder()
{
    document.getElementById('zoom').style.zIndex = "-4242";
    document.getElementById('zoom').style.display = "none";
}

function updateColor(id)
{
    var index = document.getElementById('colors' + id).options.selectedIndex;
    var value = document.getElementById('colors' + id).options[index].value;
    document.getElementById('color' + id).value = value.substring(0, value.indexOf("#", 0));
    document.getElementById('colorblockvalue' + id).style.backgroundColor = value.substring(value.indexOf("#", 0), value.length);
}

function showAddBlock()
{
    document.getElementById('ladd').style.visibility = "visible";
}
function hideAddBlock()
{
    document.getElementById('ladd').style.visibility = "hidden";
}

function showPriceLoader()
{
    document.getElementById('amount').innerHTML = '<img src="/images/loading.gif" style="padding-top:4px;padding-bottom:1px;" />';
}

