function english()
{
s = new String(location.href);
s = s.replace("/en/","/en/");
s = s.replace("/de/","/en/");
s = s.replace("/nl/","/en/");
s = s.replace("/fr/","/en/");
s = s.replace("/zh-cn/","/en/");
s = s.replace("/es/","/en/");       
document.location = eval('s');
}
      
function german()
{
s = new String(location.href);
s = s.replace("/en/","/de/");
s = s.replace("/de/","/de/");
s = s.replace("/nl/","/de/");
s = s.replace("/fr/","/de/");
s = s.replace("/zh-cn/","/de/");
s = s.replace("/es/","/de/");        
document.location = eval('s');
}
      
function dutch()
{
s = new String(location.href);
s = s.replace("/en/","/nl/");
s = s.replace("/de/","/nl/");
s = s.replace("/nl/","/nl/");
s = s.replace("/fr/","/nl/");
s = s.replace("/zh-cn/","/nl/");
s = s.replace("/es/","/nl/");        
document.location = eval('s');
}
      
function french()
{
s = new String(location.href);
s = s.replace("/en/","/fr/");
s = s.replace("/de/","/fr/");
s = s.replace("/nl/","/fr/");
s = s.replace("/fr/","/fr/");
s = s.replace("/zh-cn/","/fr/");
s = s.replace("/es/","/fr/");        
document.location = eval('s');
}

function homeLink()
{
s = new String(location.href);
s = s.substring(0,(s.indexOf('/',7) + 4)) + "default.aspx";
document.location = eval('s');
}

function campingOurWay()
{
s = new String(location.href);
s = s.substring(0,35) + "planning/campgrounds.aspx";
document.location = eval('s');
}

