﻿// JScript File
function getImgSize(id){ 
    var pic = document.getElementById(id);
    var h = pic.offsetHeight;
    var w = pic.offsetWidth;
    if(h >= w)
    {
        pic.className="image_Product1";
    }    
    else
    {
        pic.className="image_Product2";
    }
}
function getImgSizeDetail(id){ 
    var pic = document.getElementById(id);
    var h = pic.offsetHeight;
    var w = pic.offsetWidth;
    if(h >= w)
    {
        pic.className="image_Product3";
    }    
    else
    {
        pic.className="image_Product4";
    }
}
function ImgSizePro(id){ 
    var pic = document.getElementById(id);
    var h = pic.offsetHeight;
    var w = pic.offsetWidth;
    if(h >= w)
    {
        pic.className="ImgProductHeight";
    }    
    else
    {
        pic.className="ImgProductWidth";
    }
}
function ImgOther(id){ 
    var pic = document.getElementById(id);
    var h = pic.offsetHeight;
    var w = pic.offsetWidth;
    if(h >= w)
    {
        pic.className="OtherImgHeight";
    }    
    else
    {
        pic.className="OtherImgWidth";
    }
}
