var Culture = 'FR';
var flName = '/img/NousContacter.swf';

function ChangeCulture(p)
{
	var Page_Location = document.location.href;
	var absoluteUrl = "http://www.vocalcom.com";
	
	switch (p)
	{
		case "DE" :
			absoluteUrl = "http://www.vocalcom.com";
			break;
		case "EN" :
			absoluteUrl = "http://www.vocalcom.com";
			break;
		case "ES" :
			absoluteUrl = "http://www.vocalcom.es";
			break;
		case "FR" :
			absoluteUrl = "http://www.vocalcom.fr";
			break;
		case "IT" :
			absoluteUrl = "http://www.vocalcom.com";
			break;
		case "PT" :
			absoluteUrl = "http://www.vocalcom.com";
			break;
		default :
			absoluteUrl = "http://www.vocalcom.com";
			break;
	}
	
	
	var indexEndUrl = "";
	
	//Search index of third /
	
	Page_Location = absoluteUrl + self.top.location.pathname;
	document.location.href = Page_Location;
}