function ChangeEng_Sp()
{
	var ns;
	ns = "http://" + location.hostname + "/Spanish" + location.pathname;
	location.replace(ns);
	return false;
}
function ChangeSp_Eng()
{
	var ns,path;
	path = location.pathname;
	path = path.substring(8,path.length);
	ns = "http://" + location.hostname + path;
	location.replace(ns);
	return false;
}
function ChangeEng_Port()
{
	var ns;
	ns = "http://" + location.hostname + "/Portuguese" + location.pathname;
	location.replace(ns);
	return false;
}
function ChangePort_Eng()
{
	var ns,path;
	path = location.pathname;
	path = path.substring(11,path.length);
	ns = "http://" + location.hostname + path;
	location.replace(ns);
	return false;
}
function ChangeSp_Port()
{
	var ns,path;
	path = location.pathname;
	path = path.substring(8,path.length);
	ns = "http://" + location.hostname + "/Portuguese" + path;
	location.replace(ns);
	return false;
}
function ChangePort_Sp()
{
	var ns,path;
	path = location.pathname;
	path = path.substring(11,path.length);
	ns = "http://" + location.hostname + "/Spanish" + path;
	location.replace(ns);
	return false;
}