    function ClockDate ()

     {
     
       var theYear;
       var theMonth;
       var theDay;
       var hours;
       var minutes;
       var sekunden;

       var now=new Date();

           theYear=now.getFullYear ();
           theMonth=now.getMonth ()+1;
           theDay=now.getDate ();
           hours=now.getHours ();
           minutes=now.getMinutes ();
           seconds=now.getSeconds ();

		   if (hours<10)
             {
               hours="0"+String(hours);
             }
           if (minutes<10)
             {
                minutes="0"+String(minutes);
             }
           if (seconds<10)
             {
               seconds="0"+String(seconds);
             }
           if (theDay<10)
             {
               theDay="0"+String(theDay);
             }
           if (theMonth<10)
             {
               theMonth="0"+String(theMonth);
             }

           window.document.view.date.value=theDay+"."+theMonth+"."+theYear;
           window.document.view2.time.value=hours+":"+minutes+":"+seconds;
           window.setTimeout ('ClockDate()',1000);
     }

	function BlurLinks()
	 {
		lnks=document.getElementsByTagName('a');
		for(i=0;i<lnks.length;i++)
		 {
			lnks[i].onfocus=new Function("if(this.blur)this.blur()");
	 }
		 }

	onload=BlurLinks;

