﻿function Sel_Count(m_checkName,m_Current2)
{
    var check_list=document.getElementsByName(m_checkName);
    var checkCount=0;
    for(var i=0;i<check_list.length;i++)
    {
        if(check_list[i].checked==true)
        {
            checkCount=checkCount+1;
        }
    }
    if(checkCount>5)
    {
        alert("You can choose at most 5 products to compare");
        check_list[m_Current2].checked=false;
        check_list[m_Current2].focus();
    }
}

function doGetSubmit(url)
{

    var tempStoneCode='';
    var check_list=document.getElementsByName('Sel_Check');
    var checkCount=0;
    for(var i=0;i<check_list.length;i++)
    {
        if(check_list[i].checked==true)
        {
            tempStoneCode+=check_list[i].value+'-';
        }
    }
    if(tempStoneCode==null||tempStoneCode=='')
        alert("Pls choose the product you want to compare！");
    else
        window.location=url+"?id="+tempStoneCode;
    
}