
			function PrintDate() {
			var x = new Date();
			var date = x.getDate();
			if (date < 10) {
			date = '0' + date;
			}
			var minutes = x.getMinutes();
			if (minutes < 10) {
			minutes = '0' + minutes;
			}
			month = new Array(12);
			month[0] = "01.";
			month[1] = "02.";
			month[2] = "03.";
			month[3] = "04.";
			month[4] = "05.";
			month[5] = "06.";
			month[6] = "07.";
			month[7] = "08.";
			month[8] = "09.";
			month[9] = "10.";
			month[10] = "11.";
			month[11] = "12.";
			document.write('<font size="1" face="arial" color="#CCCCCC"><b>');
			document.write(date+'.');
			document.write(month[x.getMonth()]);
			document.write(''+x.getYear());
			document.write(' - ' +x.getHours() +':'+ minutes + ' Uhr');
			}
		
			
						
var popWin = null    
var winCount = 0
var winName = "popWin"

 function openPopWin(winURL, winWidth, winHeight, winFeatures){
   winName = "popWin" + winCount++ 
   closePopWin()           
   if (openPopWin.arguments.length == 4)   
     winFeatures = "," + winFeatures
   else 
     winFeatures = "" 
   popWin = window.open(winURL, winName, "width=" + winWidth 
            + ",height=" + winHeight + winFeatures)
   }

 function closePopWin(){     
   if (navigator.appName != "Microsoft Internet Explorer" 
       || parseInt(navigator.appVersion) >=4) 
     if(popWin != null) if(!popWin.closed) popWin.close() 
   }
						
function IsFormComplete(FormName)
{
var x       = 0
var FormOk  = true

while ((x < document.forms[FormName].elements.length) && (FormOk))
   {
     if (document.forms[FormName].elements[x].value == '')
     { 
        alert('Bitte fuellen Sie das "'+document.forms[FormName].elements[x].name +'"Feld aus und versuchen sie es nochmal.')
        document.forms[FormName].elements[x].focus()
        FormOk = false 
     }
     x ++
   }
return FormOk &&
alert('Vielen Dank, wir haben Sie als neuen Abonnenten des Newsletters registriert.')
}
						


