function confirm_entry()
{
input_box=confirm("Si vous passez à notre site en version française, vous perdrez\nles items enregistrés dans votre panier. Vous devrez les ajouter à nouveau.\n\nCliquez sur \"OK\" pour passer à la langue française.\n\n\nIf you have items in your shopping cart, you will have to add them again if you switch\nto our French language website because the items in your cart will be lost.\n\nClick \"OK\"  to switch to French.");

	if (input_box==true)
		{ 
		var enurl, frurl;
		enurl = location.href.toLowerCase();
		frurl = enurl.replace ("/en/", "/fr/");
//		frurl = frurl.replace ("&", "%26");
		// Output when OK is clicked
		//alert ("You clicked OK"); 
		window.location="http://www.xtremeprototypes.com/fr/shoplanguageset.asp?LG=Francais&righturl=" + frurl;
		}
//	else
//		{
		// Output when Cancel is clicked
		// alert ("You clicked cancel");
//		}
}