/** ****************************************************************************
* scripts.js
********************************************************************************
* @file         scripts.js
*
* @version      scripts $Rev: 0 $
* @copyright    Copyright (C) 2009 S+P LION AG
*
* @brief        javascripts for the homepage
*
* @author       Andreas Christ <andreas.christ@sp-lion.com>
* @author       Thorsten Landwehr <thorsten.landwehr@sp-lion.com>
*
* @date         03.03.2009 17:20 / Andreas Christ
*                 - Ausgelagert aus index.php
*
**************************************************************************** **/

//------------------------------------------------------------------------------
function chgLng(selLng)
//------------------------------------------------------------------------------
  {
    document.Index.LngId.value = selLng.value;
    document.Index.submit();
  }  // chgLng()


//------------------------------------------------------------------------------
function navigate(script)
//------------------------------------------------------------------------------
  {
    document.Index.action = "index.php?script=" + script;
    document.Index.submit();
  }  // navigate()