function Index_OnInit()
{
  try
  { 
    WebControl.ApplyDisplayOption();

    
    var oMenuStrip = new MenuStripClass(document.getElementById("NavTree1"));
    WebData.AskBeforeUnload = false;
  }
  catch(exception)
  {
    WebMessage.SendClientLog(exception, "Index_OnInit", "");
  }
}



function Index_SetLanguageEN(sender, args)
{
  try
  {
    Index_SetLanguage("en-US");
  }
  catch(exception)
  {
    WebMessage.SendClientLog(exception, "Index_SetLanguageEN", "");
  }
}

function Index_SetLanguageDE(sender, args)
{
  try
  {
    Index_SetLanguage("de-DE");
  }
  catch(exception)
  {
    WebMessage.SendClientLog(exception, "Index_SetLanguageDE", "");
  }
}


function Index_SetLanguage(languageToken)
{
  try
  {
    WebControl.AddPostParameter("Language", languageToken, "frmAction");
    WebControl.Submit(null, "/BusinessPortal/Index.aspx", "_self", "post", "frmAction");
  }
  catch(exception)
  {
    WebMessage.SendClientLog(exception, "Index_SetLanguage", "");
  }
}



