﻿//***************************************************************************************************************************************
// © Carsten Raum
// JavaScripts für www.sunvention.com
//***************************************************************************************************************************************
//
// Umschaltung englische/deutsche/portugiesische/spanische Seiten

function e_site() {
var loc = window.location.href;
var seite = loc.substring(loc.lastIndexOf("/"), loc.lastIndexOf("."));
if(seite.substring(seite.length-2) != "_e"){ 
	if((loc.substring(loc.length-1) == "/") || (seite.substring(1	, seite.length-2) == "index")){ 
		window.location.href = loc.substring(0, loc.lastIndexOf("/")) + "/index.html";
		} 
	else window.location.href = loc.substring(0, loc.lastIndexOf("/")) + seite.substring(0, seite.length-1) + "e" + loc.substring(loc.lastIndexOf("."));
	}
//	else alert("ist schon englisch");
}

function d_site() {
var loc = window.location.href;
var seite = loc.substring(loc.lastIndexOf("/"), loc.lastIndexOf("."));
if(seite.substring(seite.length-2) != "_d"){ 
	if((loc.substring(loc.length-1) == "/") || (seite.substring(seite.length-1) == "x")){ 
		window.location.href = loc.substring(0, loc.lastIndexOf("/")) + "/index_d.html";
		} 
	else window.location.href = loc.substring(0, loc.lastIndexOf("/")) + seite.substring(0, seite.length-1) + "d" + loc.substring(loc.lastIndexOf("."));
	}
//	else alert("ist schon deutsch");
}

function p_site() {
var loc = window.location.href;
var seite = loc.substring(loc.lastIndexOf("/"), loc.lastIndexOf("."));
if(seite.substring(seite.length-2) != "_p"){ 
	if((loc.substring(loc.length-1) == "/") || (seite.substring(seite.length-1) == "x")){ 
		window.location.href = loc.substring(0, loc.lastIndexOf("/")) + "/index_p.html";
		} 
	else window.location.href = loc.substring(0, loc.lastIndexOf("/")) + seite.substring(0, seite.length-1) + "p" + loc.substring(loc.lastIndexOf("."));
	}
//	else alert("ist schon portugiesisch");
}

function s_site() {
var loc = window.location.href;
var seite = loc.substring(loc.lastIndexOf("/"), loc.lastIndexOf("."));
if(seite.substring(seite.length-2) != "_s"){ 
	if((loc.substring(loc.length-1) == "/") || (seite.substring(seite.length-1) == "x")){ 
		window.location.href = loc.substring(0, loc.lastIndexOf("/")) + "/index_s.html";
		} 
	else window.location.href = loc.substring(0, loc.lastIndexOf("/")) + seite.substring(0, seite.length-1) + "s" + loc.substring(loc.lastIndexOf("."));
	}
//	else alert("ist schon deutsch");
}

//***************************************************************************************************************************************
