// <!--    start of JavaScript code of the GaTS (internet itime) at: world time clock to add somewhere in your page - <!-- worldclock.js - v. 0.99.12 -->
function atkloklbe()
         {
             var nu = new Date()
           var uren = nu.getHours()
		   var offs = nu.getTimezoneOffset()
		   var uren = uren - ( offs / -60 )
		   var uren = ( uren + 12 )
		  if ( uren > 23 ) { uren = uren - 24 }
		  if ( uren < 0 ) { uren = uren * -1 }
		  
	         var at = 0 
	            if ( uren < 1 ) { at = ( at + 0 ) }
                else
               	   at = ( uren * 3 )

		   var min = nu.getMinutes()
	              if ( min < 20 )  { at = ( at + 0 ) }
				     else
				  if ( min >= 20 & min < 40 ){ at = at + 1; min = min - 20; }
            	     else
                  if ( min > 39 ) { at = at + 2; min = min - 40; }
                           
		 var sec = nu.getSeconds()
		 
         if (  at < 10 ) {  at = "0" + at }
         if ( min < 10 ) { min = "0" + min }
         if ( sec < 10 ) { sec = "0" + sec }
 
         var time = ( at + "at:" + min + ":" + sec )
         document.klokformlbe.tijdregellbe.value = time
         window.setTimeout( "atkloklbe()", 1000 )
         }

document.write( '<form name = "klokformlbe">' )
document.write( '<input type = "text" size="9" name="tijdregellbe" style="font-family: arial; font-size: 14pt; color: #ffffff; background: transparent; border-width: 0px">' )
document.write( '</form>' )
atkloklbe()
// <!--  end of JavaScript code - worldclock.js  --> 