﻿//Call back
function CallBack(productName)
{
    CallServer(productName,'')
}

function ReceiveServerData(items)
{

    var events=items.split('^')[0];    
    if(events=="ins")
    {
        alert("Sản phẩm đã được lưu vào giỏ hàng!");
        DisplayWishList(items.split('^')[1]); 
        window.location.href="/WishList-Detail.aspx";
    }
    else
    {
        if(events=="del")
        {
            alert("Sản phẩm này đã được xoá khỏi giỏ hàng!");
            DisplayWishList(items.split('^')[1]);   
            if(window.location.pathname.indexOf('WishList-Detail')!=-1)
            {
                window.location.href="/WishList-Detail.aspx";
            }
        }     
    }
    
}

//Display wish list
function DisplayWishList(items)
{  
    var str="";
     var arrItems=items.split('|');
    var productNumber=0;
    if(items.length>10)
    {
    //str+="<div class='shopping'>";
    //str+="         	<div class='title-l'>Giỏ hàng</a></div>";
    //str+="            <div class='shopping-ds'>";
   
    
    for(var i=1;i<arrItems.length;i++)
    {
        if(arrItems[i].length>5)
        {
            productNumber+=parseInt(arrItems[i].split('&')[3]);
           // str+="            	<div class='shopping-fr'>";
           // str+="                	<div class='shopping-img'>";
           // str+="                    	<a href=product-detail.aspx?ID="+arrItems[i].split('&')[1]+"><img alt='' src='"+arrItems[i].split('&')[0]+"' /></a>";
           // str+="                  </div>";
           // str+="                  <div class='shopping-delete'><a onclick=ItemDetele('"+arrItems[i]+"') ><img alt='delete' src='images/delete.gif' /></a></div>";
           // str+="              </div>";    
        }
    }
    //str+="            </div>";
  // str+="            <div class='shopping-detail'><a href='/WishList-Detail.aspx'>Chi tiết giỏ hàng</a></div>";
  ///str+="         </div>";
    
   
    }
   // document.getElementById("render").innerHTML=str;
    document.getElementById("productinwl").innerHTML=productNumber+" Sản phẩm";
}

function DisplayCustomerInfo(id)
{
    document.getElementById("billid").style.display="inline";
}

function HidenCustomerInfo(id)
{
    if(document.getElementById(id).checked==true)
    {
    document.getElementById(id).style.display="none";
    }
}

//insert wish list
function InsertWishList(item)
{          
    CallBack("insert^"+item);   
   

}

//delete item in wish list
function ItemDetele(item)
{
    CallBack("delete^"+item);
}
var current=1;
function LoadImage(a)
{
    var arrImage=arr.split('|');
    document.getElementById(0).innerHTML="<img alt='' src='" + arrImage[a-1] + "' />";
}
