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.ca/translate?u='+urlweb+'&sl=fr&tl=en&hl=en&ie=UTF-8" target="_top"><img src="http://www.debloquer-iphone.net/img/flag_en.gif" alt="English" width="18" height="12" border="0"></a> ');

document.write('<a href="http://translate.google.ca/translate?u='+urlweb+'&sl=fr&tl=es&hl=es&ie=UTF-8" target="_top"><img src="http://www.debloquer-iphone.net/img//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.ca/translate?u='+urlweb+'&sl=fr&tl=it&hl=it&ie=UTF-8" target="_top"><img src="http://www.debloquer-iphone.net/img//flag_it.gif" alt="Italiano" width="18" height="12" border="0"></a> ');

document.write('<a href="http://translate.google.ca/translate?u='+urlweb+'&sl=fr&tl=de&hl=de&ie=UTF-8" target="_top"><img src="http://www.debloquer-iphone.net/img//flag_de.gif" alt="Deutsch" width="18" height="12" border="0"></a> ');

document.write('<a href="http://translate.google.ca/translate?u='+urlweb+'&sl=fr&tl=nl&hl=nl&ie=UTF-8" target="_top"><img src="http://www.debloquer-iphone.net/img/flag_nl.gif" alt="Nederlands" width="18" height="12" border="0"></a> ');

document.write('<a href="http://'+domain+'" target="_top"><img src="http://www.debloquer-iphone.net/img/flag_fr.gif" alt="Fran&ccedil;ais - Langue originale" width="18" height="12" border="0"></a><br></a> ');

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


