﻿function Weiter() {
var x = meme();
 if(x == false) top.close();
}
window.setTimeout("Weiter()",2000);

function meme() {
if (navigator.appName == 'Netscape')
var language = navigator.language;
else
var language = navigator.userLanguage;

if (language.indexOf('de') > -1) document.location.href = '../../index.html';
else if (language.indexOf('en') > -1) document.location.href = '../../index.html';
else if (language.indexOf('fr') > -1) document.location.href = 'http://www.nudistbeachclub.com';
else if (language.indexOf('nl') > -1) document.location.href = '../../index.html';
else if (language.indexOf('ja') > -1) document.location.href = 'http://www.nudistbeachclub.com';
else if (language.indexOf('it') > -1) document.location.href = 'http://www.nudistbeachclub.com';
else if (language.indexOf('pt') > -1) document.location.href = 'http://www.nudistbeachclub.com';
else if (language.indexOf('es') > -1) document.location.href = 'http://www.nudistbeachclub.com';
else if (language.indexOf('sv') > -1) document.location.href = 'http://www.nudistbeachclub.com';
else if (language.indexOf('zh') > -1) document.location.href = 'http://www.nudistbeachclub.com';
else 
document.location.href = '../../index.html';
}
