// JavaScript Documentfunction openPressinfo(form) {	var myindex=form.dest.selectedIndex;	window.open(form.dest.options[myindex].value, target="_blank");}function setMoodHeight () {	var arr = document.getElementsByName("right-trline");	for (i=0;i<arr.length;i++) {		if (i%2 == 0) {			arr[i].className = "right-line-white";		} else {			arr[i].className = "right-line-colored";		}	}		// document.getElementById("right-mood").style.height = document.getElementById("right-mood-image").offsetHeight+"px";	// document.getElementById("right-footer").style.visibility = "visible";	// document.getElementById("right-mood-text").style.visibility = "visible";	}function imposeMaxLength(Object, MaxLen) {	// scneidet die weiteren zeichen im textfield ab	// Beispiel: <textarea name="myName" onkeypress="return imposeMaxLength(this, 15);" ><textarea> 		return (Object.value.length <= MaxLen);}