﻿function ChooseColor(code, color) {
    imageCode = code;
    document.getElementById("ProductImage").style.backgroundImage = "url('images/product_l/"+imageCode+"_"+imageStyle+".jpg')";
    document.getElementById("TryOnImage").src = "images/product_m/"+imageCode+"_2.jpg";
    document.getElementById("ctl00_ContentPlaceHolder1_fvProduct_itemColor").value = color;
}

function FrontView() {
    document.getElementById("ProductImage").style.backgroundImage = "url('images/product_l/"+imageCode+"_1.jpg')";
    imageStyle = 1;
}

function TryonView() {
    document.getElementById("ProductImage").style.backgroundImage = "url('images/product_l/"+imageCode+"_2.jpg')";
    imageStyle = 2;
}

function Detail1View() {
    document.getElementById("ProductImage").style.backgroundImage = "url('images/product_l/"+imageCode+"_3.jpg')";
    imageStyle = 3;
}

function Detail2View() {
    document.getElementById("ProductImage").style.backgroundImage = "url('images/product_l/"+imageCode+"_4.jpg')";
    imageStyle = 4;
}

function Detail3View() {
    document.getElementById("ProductImage").style.backgroundImage = "url('images/product_l/"+imageCode+"_5.jpg')";
    imageStyle = 5;
}

var thewin

function LargeView() {
    imageStyle = 1;
    var slnk = 'LargeView.aspx?imageCode=' + imageCode + '_' + imageStyle
    if (thewin && !thewin.closed) {
        thewin.location.href= slnk ;
        thewin.focus();
        return;
    }
    thewin=window.open(slnk,'largeview','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,fullscreen=no,width=610,height=650,left=10,top=10');
    thewin.focus();
}
