var timerID = null
var timerRunning = false

function stopclock()
  { if(timerRunning) clearTimeout(timerID)   
    timerRunning = false
  }

function startclock()
  { var datum = new Date()
    var dag = new Array("Zondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrijdag","Zaterdag")
    f_date = dag[datum.getDay()] + " " + datum.getDate() + "/" + (datum.getMonth()+1) + "/" + datum.getYear()
    stopclock()   
    showtime()
  }
  
function showtime()
  { var now = new Date()
    var hours = now.getHours()   
    var minutes = now.getMinutes()   
    var seconds = now.getSeconds()
    var timeValue = hours   
    timeValue += ((minutes < 10) ? ":0" : ":") + minutes   
    timeValue += ((seconds < 10) ? ":0" : ":") + seconds   
    timeValue += " - " + f_date
    window.status = "Website van Janssens-Demoor - " + timeValue    
    timerID = setTimeout("showtime()",1000)   
    timerRunning = true
  }


function noclick() {
// No right Click Function
	if (event.button==2) {
		alert('© 1994-2007, Tom Janssens')
	}
}

document.onmousedown=noclick
document.onload=startclock()