var domain;
domain = window.location.hostname;

function getURLVar(urlVarName) {
//divide the URL in half at the '?'
var urlHalves = String(document.location).split('?');
var urlVarValue = '';
if(urlHalves[1]){
	//load all the name/value pairs into an array
	var urlVars = urlHalves[1].split('&');
	//loop over the list, and find the specified url variable
	for(i=0; i<=(urlVars.length); i++){
		if(urlVars[i]){
		//load the name/value pair into an array
		var urlVarPair = urlVars[i].split('=');
			if (urlVarPair[0] && urlVarPair[0] == urlVarName) {
			//I found a variable that matches, load it's value into the return variable
			urlVarValue = urlVarPair[1];
			}
		}
	}
}else {urlVarValue="";}
return urlVarValue;   
}

var google = getURLVar('u');

var urlweb;

if(google==""){
	urlweb = "http://"+window.location.hostname+window.location.pathname+"";
}else{
	urlweb = google;
	domain = urlweb.replace("http://", "");

}

document.write('<flags>');

document.write('<a href="http://translate.google.fr/translate?u='+urlweb+'&sl=fr&tl=en&hl=en&ie=UTF-8" target="_top"><img src="http://www.fred-ericksen.com/_borders/drapeaux/UNKG0001.GIF" alt="English" width="20" height="13" border="0"></a> ');

document.write('<a href="http://translate.google.fr/translate?u='+urlweb+'&sl=fr&tl=es&hl=es&ie=UTF-8" target="_top"><img src="http://www.fred-ericksen.com/_borders/drapeaux/SPAN0001.GIF" alt="&#69;&#115;&#112;&#97;&#241;&#111;&#108;" width="20" height="13" border="0"></a> ');

document.write('<a href="http://translate.google.fr/translate?u='+urlweb+'&sl=fr&tl=it&hl=it&ie=UTF-8" target="_top"><img src="http://www.fred-ericksen.com/_borders/drapeaux/ITAL0001.GIF" alt="Italiano" width="20" height="13" border="0"></a> ');

document.write('<a href="http://translate.google.fr/translate?u='+urlweb+'&sl=fr&tl=de&hl=de&ie=UTF-8" target="_top"><img src="http://www.fred-ericksen.com/_borders/drapeaux/GERM0001.GIF" alt="Deutsch" width="20" height="13" border="0"></a> ');

document.write('<a href="http://translate.google.fr/translate?u='+urlweb+'&sl=fr&tl=zh-TW&hl=zh-TW&ie=UTF-8" target="_top"><img src="http://www.fred-ericksen.com/_borders/drapeaux/CHIN0001.GIF" alt="&#28450;&#35486;" width="20" height="13" border="0"></a> ');

document.write('<a href="http://translate.google.fr/translate?u='+urlweb+'&sl=fr&tl=pt&hl=pt&ie=UTF-8" target="_top"><img src="http://www.fred-ericksen.com/_borders/drapeaux/PORT0001.GIF" alt="&#80;&#111;&#114;&#113;&#11;" width="20" height="13" border="0"></a> ');

document.write('<a href="http://translate.google.fr/translate?u='+urlweb+'&sl=fr&tl=ru&hl=ru&ie=UTF-8" target="_top"><img src="http://www.fred-ericksen.com/_borders/drapeaux/RUSS0001.GIF" alt="&#1056;&#1091;&#1089;&#1089;&#1082;&#1086;" width="20" height="13" border="0"></a> ');

document.write('<a href="http://'+domain+'" target="_top"><img src="http://www.fred-ericksen.com/_borders/drapeaux/FRAN0001.GIF" alt="Fran&ccedil;ais - Langue originale" width="20" height="13" border="0"></a>');

document.write('</flags>');


