var timerID = null;

var TimerRunning = false;

function stop(){

if(TimerRunning)

clearTimeout(timerID);

TimerRunning = false;

}

function display() {

var thedate = new Date();

var hours = thedate.getHours();

var Min = thedate.getMinutes();

var Sec = thedate.getSeconds();

var TimeV = "" + ((hours >24) ? hours -24 :hours)

TimeV += ((Min < 10) ? ":0": ":") + Min

TimeV += ((Sec < 10) ? ":0": ":") + Sec

window.status = " ¯`·..·-»« Willkommen auf der Homepage vom sächsischen Gewichtheberverband »«-·..·´¯ Uhrzeit :   » " + TimeV + "   ";

timerID = setTimeout("display()",1000);

TimerRunning = true;

}

function start() {

stop();

display();


}

start();

