//var loc = document.location.toString();
//
//var english = !(loc.search("/fr/")+1);
//
//function fr(){
//if(english){document.location = loc.replace(".com/",".com/fr/")}
//}
//
//function eng(){
//if(!english){document.location = loc.replace("/fr/","/")}
//}

var loc = document.location.toString();

var english = !(loc.search("/fr")+1);


var langue = "/en";

if (loc.search("/fr")+1)
	{langue="/fr";}
if (loc.search("/cn")+1)
	{langue="/cn";}
if (loc.search("/es")+1)
	{langue="/es";}

function fr(){
	document.location = loc.replace(langue,"/fr")
}

function eng(){
	document.location = loc.replace(langue,"/en")
}

function cn(){
	document.location = loc.replace(langue,"/cn")
}

function es(){
	document.location = loc.replace(langue,"/es")
}

/* ******************************* pour les liens des page index*/


function index_global(){
	document.location = "http://mysenergy.com/"
}


/* *******************************  pour les liens de la page index global*/

function fr_tmp(){
	document.location = "http://mysenergy.com/fr/home/"
}

function cn_tmp(){
	document.location = "http://mysenergy.com/cn/home/"
}

function es_tmp(){
	document.location = "http://mysenergy.com/es/home/"
}


