function clockon() {
thistime = new Date()
var month = thistime.getMonth()
var date = thistime.getDate()
var year = thistime.getYear()
var hours = thistime.getHours()
var minutes = thistime.getMinutes()
var seconds = thistime.getSeconds()
if (eval(date) <10) {date = "0" + date}
if (eval(month) <10) {month = "0" + month}

if (eval(hours) <10) {hours = "0" + hours}
if (eval(minutes) < 10) {minutes = "0" + minutes}
if (seconds < 10) {seconds = "0" + seconds}
thistime = date+ "." + month + "." + year + "   " + hours + ":" + minutes + ":" + seconds;
//document.getElementById('bgclockshade').innerHTML = thistime;

var timer=setTimeout ("clockon()", 200);
}
