<!--

		var img1 = "img/kopf/kopf_1.jpg"
		var img2 = "img/kopf/kopf_2.jpg"
		var img3 = "img/kopf/kopf_3.jpg"
		var img4 = "img/kopf/kopf_4.jpg"
		var img5 = "img/kopf/kopf_5.jpg"
		var img6 = "img/kopf/kopf_6.jpg"
		var img7 = "img/kopf/kopf_7.jpg"
		var img8 = "img/kopf/kopf_8.jpg"
		var img9 = "img/kopf/kopf_9.jpg"
		var img10 = "img/kopf/kopf_10.jpg"
		var img11 = "img/kopf/kopf_11.jpg"
		var img12 = "img/kopf/kopf_12.jpg"
		var img13 = "img/kopf/kopf_13.jpg"
		var img14 = "img/kopf/kopf_14.jpg"
				
	
		var randomize = Math.round(Math.random()*14)
		if (randomize == 1){
		newimg1 = img1
		}else if (randomize == 2){
		newimg1 = img2
		}else if (randomize ==3){
		newimg1 = img3
		}else if (randomize ==4){
		newimg1 = img4
		}else if (randomize ==5){
		newimg1 = img5
		}else if (randomize ==6){
		newimg1 = img6
		}else if (randomize ==7){
		newimg1 = img7
		}else if (randomize ==8){
		newimg1 = img8
		}else if (randomize ==9){
		newimg1 = img9
		}else if (randomize ==10){
		newimg1 = img10
		}else if (randomize ==11){
		newimg1 = img11
		}else if (randomize ==12){
		newimg1 = img12
		}else if (randomize ==13){
		newimg1 = img13
		}else{
		newimg1 = img14
		}
		document.write('<IMG width="850" height="150" SRC="'+newimg1+'" border="0">')
		
		
// globale Zählervariable
var charsToGo;

function charCounter(charInputSrcName, maxCharCount, outputTargetName) {

   // Zugriffsvariablen festlegen
   var charInputSrc = document.getElementById(charInputSrcName);
   var outputTargetSrc = document.getElementById(outputTargetName);

   if (charInputSrc != null) {
      // Länge des Feldinhaltes prüfen
      if (charInputSrc.value.length <= maxCharCount) {
         // Anzahl Restzeichen berechnen und Zeichenanzeige aktualisieren
         charsToGo = maxCharCount - charInputSrc.value.length;
         outputTargetSrc.innerHTML = '(' + charsToGo + '&nbsp;Zeichen)';
      }
      else 
         // Eingegebenes Zeichen wieder abschneiden
         charInputSrc.value = charInputSrc.value.substring(0, maxCharCount);
         charsToGo = maxCharCount - charInputSrc.value.length;
      }
}

function counterOutput(charInputSrcName, maxCharCount, outputTargetName)
{
   // Zugriffsvariablen festlegen
   var charInputSrc = document.getElementById(charInputSrcName);

   // globale Variable prüfen
   if (charsToGo == null) { 
      // Ausgabewert berechnen
      charsCount = maxCharCount - charInputSrc.value.length; }
   else 
      // Ausgabefeld initialisieren
      charsCount = charsToGo; 
         document.write('<span name=\"' 
            + outputTargetName + '\" id=\"' + outputTargetName +'\">(' 
            + charsCount + '&nbsp;Zeichen)</span>')
}


function OpenWindow(WinWidth,WinHeight,Link,WindowName)
{window.open(Link,WindowName,'toolbar=0,width='+WinWidth+',height='+WinHeight+',location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,copyhistory=0,top=50,left=350')}

	
		
	//-->
