// JavaScript Document

function lsw_SwitchToEn()
{
	uri = document.location.href;
	
	urinew = uri.split("glovebox-systemtechnik.de/").join("glovebox-systemtechnik.de/en/");
	
	document.location.href = urinew;
}

function lsw_SwitchToDe()
{
	uri = document.location.href;
	
	urinew = uri.split("glovebox-systemtechnik.de/en/").join("glovebox-systemtechnik.de/");
	
	document.location.href = urinew;
}


