﻿// JScript File

var iCurrImage = 1;

function OnClick(value)
{
    iCurrImage = value;
    //strExt = ext;
    SetImage();
    
    return false;
}

function SetImage()
{
    try
    {
        var imgPreview = document.getElementById(strCtrlID);	    
        imgPreview.src = strServerImages + "th/" + iCurrImage + "/" + iModelSubCode + "/" + iModelCode + strExt;
    }
    catch(exception)
    {
        return false;
    }
}