<!--
function CheckTextarea()
{
var max=150 , textinhalt;
textinhalt=document.partneradd.beschreibung.value;

if (textinhalt.length >= max)
{
document.partneradd.beschreibung.value=textinhalt.substring(0,max);
document.partneradd.beschreibung.blur();
}
}

function Confirm ( frage, link)
{

  Conf = confirm(frage);
	if (Conf == true)
	{
  window.location.href = link;
	}
} 

var stat = false;
function dpl(id) {
    if (stat) document.getElementById(stat).style.display = "none";
    document.getElementById(id).style.display   = "";
    stat =  id;
}

-->
