﻿function check96(img)
{
    
    var imageArr=document.getElementById(img);
    //宽大于高
    if (imageArr.offsetWidth > imageArr.offsetHeight)
    {
        if(imageArr.offsetWidth > 96) 
        {
            imageArr.style.width="96px";
        }
    }
    else if (imageArr.offsetHeight > imageArr.offsetWidth)
    {
        if (imageArr.offsetHeight > 96)
        {
            imageArr.style.height = "96px";
        }
    }
    else
    {
        if(imageArr.offsetWidth > 96) 
        {
            imageArr.style.width="96px";
        }
    
    }    
}

function checkBig(img)
{
    var imageArr=document.getElementById(img);
    
    if(imageArr.offsetWidth > 700) 
    {
        
        imageArr.style.width = '700px';
    }
}

function check163(img)
{
    var imageArr=document.getElementById(img);
    
    //宽大于高
    if (imageArr.offsetWidth > imageArr.offsetHeight)
    {
    
        if(imageArr.offsetWidth > 163) 
        {
            
            imageArr.style.width = '163px';
        }
    }
    else if (imageArr.offsetHeight > imageArr.offsetWidth)
    {
        if (imageArr.offsetHeight > 163)
        {
            imageArr.style.height = '163px';
        }
    }
    else
    {
        if(imageArr.offsetWidth > 163) 
        {
            imageArr.style.width= '163px';
        }
    
    }    
}



function showprice()
        {
            var result=confirm('本商铺报价仅零售商可以查看，如果您是零售商，请先注册或登录(点击确定将打开登录/注册页面)!');
            if (result == true)
            {
                window.open("../../Users/UserLogin.aspx?ReturnUrl=" + window.location,"");
            }
            
        }