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