// JavaScript Document

function lang1()
   {
     if (window.location.pathname.indexOf("/EN/") != -1)
     {   
		 window.location.replace(location.pathname.replace("/EN/","/EN/"));
     }
     else if (window.location.pathname.indexOf("/CH/") != -1)
     {   
		 window.location.replace(location.pathname.replace("/CH/","/EN/"));     
      }
     else if (window.location.pathname.indexOf("/SC/") != -1)
     {   
		 window.location.replace(location.pathname.replace("/SC/","/EN/"));     
      }
   }

   function lang2()
   {
     if (location.pathname.indexOf("/CH/") != -1)
     {  
	 location.replace(location.pathname.replace("/CH/","/CH/"));
     }
     else if (top.location.pathname.indexOf("/SC/") != -1)
     {   
	 location.replace(location.pathname.replace("/SC/","/CH/"));     
      }
     else if (top.location.pathname.indexOf("/EN/") != -1)
     {   
	 location.replace(location.pathname.replace("/EN/","/CH/"));     
      }
   }

   function lang3()
   {
     if (location.pathname.indexOf("/SC/") != -1)
     {   location.replace(location.pathname.replace("/SC/","/SC/"));
     }
     else if (location.pathname.indexOf("/EN/") != -1)
     {   
	 location.replace(location.pathname.replace("/EN/","/SC/"));     
      }
     else if (location.pathname.indexOf("/CH/") != -1)
     {   
	 location.replace(location.pathname.replace("/CH/","/SC/"));     
      }
   }
