function set_titel (page_width, min_width, text)
 {var tab1 = get_element ("tab01_id");
  var tab2 = get_element ("tab02_id");
  var txt1 = get_element ("div01_id");
  var txt2 = get_element ("div02_id");
  if (page_width < min_width)
   {tab1.style.verticalAlign = "bottom";
    tab2.style.verticalAlign = "top";
    tab1.style.paddingTop = "16px";
    tab1.style.paddingBottom = "1px";
    tab2.style.paddingTop = "1px";
    tab2.style.paddingBottom = "15px";
    txt1.className = "type2";
    txt2.className = "type2";
    txt1.firstChild.nodeValue = "Judo-Club Wetzlar 1963 e.V.";
    txt2.firstChild.nodeValue = "Abteilung " + text;}
  else
   {tab1.style.verticalAlign = "middle";
    tab2.style.verticalAlign = "middle";
    tab1.style.paddingTop = "26px";
    tab1.style.paddingBottom = "1px";
    tab2.style.paddingTop = "0px";
    tab2.style.paddingBottom = "25px";
    txt1.className = "type1";
    txt2.className = "type3";
    txt1.firstChild.nodeValue = "Judo-Club Wetzlar 1963 e.V. - Abteilung " + text;
    txt2.firstChild.nodeValue = " ";}}

function set_table_heigth (table, page_height, browser)
 {if (browser == "Netscape")
   {table.style.height = String (get_page_height () - 18) + "px";}
  else
   {table.style.height = "100%";}}

function set_table_width (table, page_width, xmaxwidth, xsetwidth)
 {if (page_width > xmaxwidth)
   {table.style.width = String (xsetwidth) + "px";}
  else
   {table.style.width = "100%";}}

function set_row_heigth (row1, row2, browser)
 {if (browser == "Explorer")
   {row1.style.height = "40%";
    row2.style.height = "60%";}
  else
   {row1.style.height = "10%";
    row2.style.height = "90%";}}
