
var MyList = new Array;
var MyProduct = getCookie("MyCookie");
if (MyProduct!=null){
  var MyList=MyProduct.split(",");
}
for (g=0; g<=MyList.length-1;g++)
{
  var checkno = "a" + MyList[g].replace(/\'/g,"");
  add_check2(checkno);
  //document.write (checkno);
}

function getCookie(name){
  var strCookies = document.cookie;
  var cookieName = name + "=";  // Cookie名稱
  var valueBegin, valueEnd, value;
  // 尋找是否有此Cookie名稱
  valueBegin = strCookies.indexOf(cookieName);
  if (valueBegin == -1) return null;  // 沒有此Cookie
  // 取得值的結尾位置
  valueEnd = strCookies.indexOf(";", valueBegin);
  if (valueEnd == -1)
      valueEnd = strCookies.length;  // 最後一個Cookie
  // 取得Cookie值
  value = strCookies.substring(valueBegin+cookieName.length,valueEnd);
  return value;
}

function add_check2(p_id)
{
   var objspan=eval('document.all[p_id]');
   if (objspan!=null){
   document.all[p_id].innerHTML="<input type='checkbox' name='productid'  value='" + p_id +"' onclick='del_check(this.value)' checked><a href='http://bestproducts.asiannet.com/inquire_list.asp'><font face='Arial, Helvetica, sans-serif' size='2'><span class='apparel'><font color='#CC3300'>Added to Cart</font></span></font></a>";
   }
}


