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.com/translate?u='+urlweb+'&sl=fr&tl=en&hl=en&ie=UTF-8" target="_blank"><img src="timage/gb.gif" alt="English" width="16" height="11" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate?u='+urlweb+'&sl=fr&tl=es&hl=es&ie=UTF-8" target="_blank"><img src="timage/es.gif" alt="Espanol" width="16" height="11" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate?u='+urlweb+'&sl=fr&tl=it&hl=it&ie=UTF-8" target="_blank"><img src="timage/it.gif" alt="Italiano" width="16" height="11" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate?u='+urlweb+'&sl=fr&tl=de&hl=de&ie=UTF-8" target="_blank"><img src="timage/de.gif" alt="Deutsch" width="16" height="11" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate?u='+urlweb+'&sl=fr&tl=zh&hl=zh&ie=UTF-8" target="_blank"><img src="timage/cn.gif" alt="Chino" width="16" height="11" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate?u='+urlweb+'&sl=fr&tl=ja&hl=ja&ie=UTF-8" target="_blank"><img src="timage/ja.gif" alt="Japonese" width="16" height="11" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate?u='+urlweb+'&sl=fr&tl=nl&hl=nl&ie=UTF-8" target="_blank"><img src="timage/nl.gif" alt="Nederlands" width="16" height="11" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate?u='+urlweb+'&sl=fr&tl=hl&hl=hu&ie=UTF-8" target="_blank"><img src="timage/hu.gif" alt="Magyar" width="16" height="11" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate?u='+urlweb+'&sl=fr&tl=pt&hl=pt&ie=UTF-8" target="_blank"><img src="timage/pt.gif" alt="Portuges" width="16" height="11" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate?u='+urlweb+'&sl=fr&tl=ru&hl=ru&ie=UTF-8" target="_blank"><img src="timage/ru.gif" alt="Russia" width="16" height="11" border="0"></a> ');

document.write('<a href="http://'+domain+'" target="_blank"><img src="timage/fr.gif" alt="Fran&ccedil;ais - Language original" width="16" height="11" border="0"></a> ');