// JavaScript Document
function fullwin(){
window.open("index.php","the_chat","fullscreen,scrollbars,resizable")
}

function popup() {
	window.open("http://radio.a7babzorona.de/radio_timetable.php","","width=250,height=100,top=300,left=350");
}

function showFilled(Value) {
  return (Value > 9) ? "" + Value : "0" + Value;
}

function StartClock24() {
  TheTime = new Date;
  window.status = "Welcome to A7babzorona " + ":" + showFilled(TheTime.getHours()) + ":" + showFilled(TheTime.getMinutes()) + ":" + showFilled(TheTime.getSeconds());
  setTimeout("StartClock24()",100)
}

function rounds(number,X){
X = (!X ? 2 : X); return Math.round(number*Math.pow(10,X))/Math.pow(10,X);
}

StartClock24();