﻿// JScript File
// Scene7 swaps swatch image for product
function ViewSwatchImage(newImageUrl, newNavigateUrl, baseNumber, colorCode, colorName) {
    var imgProduct = window.document.getElementById("imgProduct")
    if (null == imgProduct) {
        imgProduct = window.document.getElementById("imgRegProduct")
    }
    if (null != imgProduct) {
        imgProduct.src = newImageUrl;
    }
    var lblImageDesc = window.document.getElementById("lblImageDesc")
    if (null != lblImageDesc)
    { lblImageDesc.innerHTML = "(" + colorCode + ") " + colorName; }
    var o = window.document.getElementById("hlinkLargerImage")
    if (o != null)
        o.href = newNavigateUrl;
    o = window.document.getElementById("hlinkPlus")
    if (o != null)
        o.href = newNavigateUrl;
    o = window.document.getElementById("hdnZoomVariable");
    if (o != null)
        o.value = baseNumber + "_" + colorCode;
}

// Scene7 zoom window
function ZoomImage() {
    if (typeof cmCreatePageviewTag === 'function') {
        cmCreatePageviewTag("Zoom Image", "ProductZoom");
    }
    var path = "/ProductZoom.aspx?image_id=";
    var tempValue = window.document.getElementById("hdnZoomVariable").value;
    path = path + tempValue;

    zoomwindow = window.open(path, "win", "height=500,width=500,screenX=390,screenY=290,top=290,left=390" +
	"directories=no,location=right,menubar=no," +
	"resizable=no,status=no,toolbar=no,history=no,scrollbars");

    zoomwindow.focus();
}