/******************************************************************************/
/*                      ______ ______ ________   _______                      */
/*                     |  ____|  ____|  ____\ \ / /_   _|                     */
/*                     | |__  | |__  | |__   \ V /  | |                       */
/*                     |  __| |  __| |  __|   > <   | |                       */
/*                     | |____| |    | |____ / . \ _| |_                      */
/*                     |______|_|    |______/_/ \_\_____|                     */
/*                                                                            */
/*          (c) efexi - www.efexi.de - Markus Hallau - info@efexi.de          */
/*                                 08.03.2010                                 */
/******************************************************************************/  

function foot_help(){
  var hoehe = 0;
  var divi = 151;

  if (window.innerHeight) hoehe = window.innerHeight;
  else if (document.documentElement.clientHeight) hoehe = document.documentElement.clientHeight;

  if (hoehe > 0) {
    document.getElementById("help").style.height = hoehe-divi+'px';
    document.getElementById("content").style.padding = '23px';
    document.getElementById("foot").style.position = 'static';
    document.getElementById("foot").style.margin = '0';
  }
}  
