// <!--
//  javascript code of the GaTS internet at: world time clock to add somewhere in your page
function localkloknb()
         {
	     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.aklokformnb.aregelnb.value = time
         window.setTimeout( "localkloknb()", 1000 )
         }

document.write( '<form name = "aklokformnb">' )
document.write( '<input type = "text" size="7" name="aregelnb" style="font-family: arial; font-size: 10pt; color: black; background: transparent; border-width: 0px">' )
document.write( '</form>' )
localkloknb()
// --> 
//  end javaccript code