function display_path()
{
var sPath = window.location.pathname;

var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

var sExcludeExt=sPage.substring(0,sPage.lastIndexOf('.') );


 if (sExcludeExt=="index" || sExcludeExt=="" )
  {
	redirectPage='index-en.htm';
  }
 else
  {
	redirectPage='index.htm';
  }

   window.location =redirectPage;
}

