/*---------GÄSTEBUCH-------------------------------------------------------------------------------------------------------*/

<!--
function AddSmiley(text)
{
  var caretPos = document.gb.beitrag.caretPos;
  text = ' ' + text + ' ';

  if (document.gb.beitrag.createTextRange && document.gb.beitrag.caretPos)
    {
    var caretPos = document.gb.beitrag.caretPos;
    caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? caretPos.text + text + ' ' : caretPos.text + text;
    document.gb.beitrag.focus();
    }
  else
    {
    document.gb.beitrag.value += text;
    document.gb.beitrag.focus();
    }
}
//-->

/*---------ARCHIV SPIELBERICHTE--------------------------------------------------------------------------------------------*/

<!--
function SpielberichteArchiv(url)
{
  fenster = window.open(url, "Spielbericht_Archiv", "width=640,height=500,toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,left=100,top=50");
  fenster.focus();
}
//-->

/*---------STATISTIK BEARBEITEN--------------------------------------------------------------------------------------------*/

<!--
function statistik_inc(FELD)
{
  var zahl = document.getElementById(FELD).value
  zahl++
  document.getElementById(FELD).value = zahl
}
//-->

<!--
function statistik_dec(FELD)
{
  var zahl = document.getElementById(FELD).value
  if(zahl>'0')
    {
    zahl--
    }
  document.getElementById(FELD).value = zahl
}
//-->

/*---------NOTHING---------------------------------------------------------------------------------------------------------*/

<!--
function nothing() {}
//-->
