
function action1() {
 	window.location="./admin/";
}

function setSWFconHeight(h) {
	$("div#systemeApp").animate({       
		height:h
    }, { duration: "slow" });

}


function trim (zeichenkette) {
  // Erst führende, dann Abschließende Whitespaces entfernen
  // und das Ergebnis dieser Operationen zurückliefern
  return zeichenkette.replace (/^\s+/, '').replace (/\s+$/, '');
}


function checkForm() {
	//alert("hallo welt");	
	//.document.form.submit()
	
	var errorCount = 0;
	var reg = false;
	
	name = trim(document.form.name.value);
	if(name == "") {
		errorCount++;
		document.getElementById('error1').className = 'errorShow';		
	}
	
	text = trim(document.form.text.value);
	if(text == "") {
		errorCount++;
		document.getElementById('error2').className = 'errorShow';		
	}
	
	if(errorCount==0) {
		document.form.submit();	
	}
	
}
