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