
var userId="-2";
function Wishlist(){	
};
Wishlist.buildAttributes=function (){
	var frm=$("productDetailFrm");		
		if(frm!=null){
			var attrs="";
			var len=frm.elements.length;	
			for(var i=0;i<len;i++){ 
				var e=frm.elements[i]; 
				var name=e.name;
				if(name.indexOf("custom")==0){
					if(len==1){
						attrs=attrs + e.name+"##"+e.value;
					}else{
						if(i!=len-1){
							attrs=attrs + e.name+"##"+e.value+"||||";				
						}else{
							attrs=attrs + e.name+"##"+e.value;
						}						
					}
				}
			} 			
			return attrs;
		}else{
			return "";
		}
}

Wishlist.addToWishlist=function(productCode){
	if(userId==-2){//anonymous user ,so must login.
		location.href=__ctxPath+ "/customer/wishlist.html";
		return;
	}
	var productInfo="";
	if(productCode==null){
		return "";
	}
	productInfo+=Wishlist.buildAttributes() + "@@@@" + productCode;
	
	if(productInfo=="")return;
	alert(productInfo);
	//dwr for add wishlist item;	
	//DWREngine.setAsync(false) ;
	wishlistManager.addWishListItem(null,productInfo);
}