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_c?hl=fr&sl=fr&tl=en&u='+urlweb+'"><img src="images/flag_en.gif" alt="English" width="18" height="12" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate_c?hl=fr&sl=fr&tl=es&u='+urlweb+'"><img src="images/flag_es.gif" alt="&#69;&#115;&#112;&#97;&#241;&#111;&#108;" width="18" height="12" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate_c?hl=fr&sl=fr&tl=ar&u='+urlweb+'"><img src="images/flag_ar.gif" alt="[&#1571;&#1585;&#1576;&#1610;&#1603;]" width="18" height="12" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate_c?hl=fr&sl=fr&tl=it&u='+urlweb+'"><img src="images/flag_it.gif" alt="Italiano" width="18" height="12" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate_c?hl=fr&sl=fr&tl=de&u='+urlweb+'"><img src="images/flag_de.gif" alt="Deutsch" width="18" height="12" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate_c?hl=fr&sl=fr&tl=zh-CN&u='+urlweb+'"><img src="images/flag_zh-chinese.gif" alt="China" width="18" height="12" border="0"></a> ');

document.write('<a href="http://translate.google.com/translate_c?hl=fr&sl=fr&tl=ru&u='+urlweb+'"><img src="images/flag_ru.gif" alt="&#1056;&#1091;&#1089;&#1089;&#1082;&#1086;" width="18" height="12" border="0"></a> ');





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



