var itemsWishedDVDBlock = new Array();
	
	function isInItemsWishedDVDBlock(itemId){
		var result = false;
		var count = 0
		while(!result  && count < itemsWishedDVDBlock.length){
			if(itemsWishedDVDBlock[count]==itemId){
				result=true; 
			}
			count++;
		}
		return result;
	}
	
	function addToWishListDVDBlock(itemId,sb){
		if(!isInItemsWishedDVDBlock(itemId)){
			if (isNavigatorOk()){
				itemsWishedDVDBlock[itemsWishedDVDBlock.length] = itemId;
				AddToWishListInFirstPosition.execute(itemId, reply2DVDBlock);
			}
			else{
				itemsWishedDVDBlock[itemsWishedDVDBlock.length] = itemId;
				document.location.href = "/addToWishList.do?"+sb+"&<%= ActionConstants.PARAM_ORDER %>=1";
			}
		}
	}

	var reply2DVDBlock = function(data){
		if(data.added==true){
			var div = document.getElementById("addToWLInFirstPozSignalization");
			div.style.display = "";
			var img = document.getElementById("icon_add_"+itemsWishedDVDBlock[itemsWishedDVDBlock.length-1]);
			if(data.titMaster==true){
				if(img!=null) {
					img.src="/images/icon_deja_coffret.gif";
					img.alt=img.title="Le coffret a été ajouté ŕ \"Mon Programme\"";
				}
			}else{
				if(img!=null) {
					img.src="/images/icon_deja_titre.gif";
					img.alt=img.title="Le titre a été ajouté ŕ \"Mon Programme\"";
				}
			}
			try {
				displayWishListHP();
			} catch(e) {
			
			}
		}else{
			showBlock();
		}
	}
