// ELYWEB COMMENTS -->

function InviteComment(TITRE)
{
	HTML =	"<td class='Icone'><img onclick='Comment()' style='border: 0; cursor: pointer;' src='/central/interact/leavecomment.gif' width='74' height='74'>"+
			"<br/>Donner moi votre avis sur<br/><i>" + TITRE + "</i></td>";

	document.write(HTML);
}

function Comment()
{
window.open("comments/index.php","Comments","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=0,status=0,titlebar=0,width=640,height=480");
}

// End -->

// ELYWEB DVD PURCHASE -->

	CookieFacture = "ElyWebCart";

function Purchase(TITRE, DVD)
{
	if (document.cookie.length>0)
		{
		var CookieStart = document.cookie.indexOf(CookieFacture + "=")
	
		if (CookieStart != -1)
			{
			CookieStart = CookieStart + CookieFacture.length+1
			CookieEnd = document.cookie.indexOf(";", CookieStart)

			if (CookieEnd == -1)
			   	{
			   	CookieEnd = document.cookie.length;
			   	}
			   	
			value = unescape(document.cookie.substring(CookieStart, CookieEnd));
			   	
			if (value.match(DVD) == DVD)
		   		{
		   		var NotificationCheckOut = 'Le DVD de ' + TITRE + ' est déjà dans votre panier !\n';
					NotificationCheckOut+= 'Cliquez sur \"OK\" pour passer votre commande.';

		   		var CheckOut = confirm( NotificationCheckOut );

		   		if (CheckOut == true)
		   			{
					window.location.href = '/mesfilms/facture.htm';
		   			}
		   		}
		   	else
		   		{
		   		value = unescape(document.cookie.substring(CookieStart, CookieEnd)) + DVD;
		   		SetCartCookie(value, TITRE);
		   		}
			}
	    }

	else
		{
		var value = DVD;
   		SetCartCookie(value, TITRE);
		}
}

function SetCartCookie(value, TITRE)
{
	var NotificationFillCart = 'Cliquer sur \"OK\" pour ajouter le DVD de\n';
		NotificationFillCart+= TITRE + ' à votre panier.\n';

	var NotificationCheckOut = 'Le DVD de ' + TITRE + ' a bien été ajouté à\n';
		NotificationCheckOut+= 'votre panier. Pour finaliser votre commande,\n';
		NotificationCheckOut+= 'cliquez maintenant sur \"OK\" ou dirigez-vous\n';
		NotificationCheckOut+= 'vers la section \"Mes Films\" et cliquez sur\n';
		NotificationCheckOut+= 'l\'onglet \"Mes DVD\".';

	var FillCart = confirm( NotificationFillCart );
	
	if (FillCart == true)
		{
		var expiredays = 7;
		var exdate = new Date();
		exdate.setDate(exdate.getDate() + expiredays);
		document.cookie = CookieFacture + "=" + escape(value) + ((expiredays == null) ? "" : ";expires=" + exdate.toGMTString() + '; path=/');
		
		var CheckOut = confirm( NotificationCheckOut );
		
		if (CheckOut == true)
			{
			window.location.href = '/ELYWEB_MES_FILMS/dvd_facture.htm';
			}
		}
}

function InvitePurchase(TITRE, DVD)
{
	HTML =	"<td class='Icone'><img onclick=\"Purchase('" + TITRE + "', '" + DVD + "')\" style=\"border: 0; cursor: pointer;\" src=\"/central/interact/orderdvd.gif\" width=\"74\" height=\"74\">"+
			"<br/>Commander le DVD de<br/><i>" + TITRE + "</i></td>";

	document.write(HTML);
}

// End -->