function getHost() {


	var url = window.location.href;
	var nohttp = url.split('//')[1];
	var hostPort_1 = nohttp.split('/')[0]
	var hostPort_2 = nohttp.split('/')[1]
	var hostPort_3 = nohttp.split('/')[2]
	
	var findThis = hostPort_3.indexOf("_e");

	if (findThis > 1) {
		// English
		hostPort_3 = hostPort_3.split("_e").join("_f");
		//location.replace('http://' + hostPort_1 + '/' + hostPort_2 + '/' + hostPort_3)
		//alert('To French!')
		window.location.href='http://www.conferencesicis.ca/utilisateursdesdonnees2010/' + hostPort_3

	} else {
		// French	
		hostPort_3 = hostPort_3.split("_f").join("_e");
		//alert('http://' + hostPort_1 + '/' + hostPort_2 + '/' + hostPort_3)
		//location.replace('http://' + hostPort_1 + '/' + hostPort_2 + '/' + hostPort_3)
		window.location.href='http://www.cihiconferences.ca/datausers2010/' + hostPort_3
		//alert('To English!')
	}


}