// <!--
//  javascript code of the GaTS internet at: world time clock to add somewhere in your page
function localkloklb()
         {
	     var tal = new Date()
         var uur = tal.getHours()
         var min = tal.getMinutes()
  	     var sec = tal.getSeconds()
		 
         if ( uur <  10 ) { uur = "0" + uur }
         if ( min <  10 ) { min = "0" + min }
         if ( sec <  10 ) { sec = "0" + sec }
         var time = ( uur + ":" + min + ":" + sec )
         document.aklokformlb.aregellb.value = time
         window.setTimeout( "localkloklb()", 1000 )
         }

document.write( '<form name = "aklokformlb">' )
document.write( '<input type = "text" size="7" name="aregellb" style="font-family: arial; font-size: 13pt; color: black; background: transparent; border-width: 0px">' )
document.write( '</form>' )
localkloklb()
// --> 
//  end javaccript code
