var was;
function einblenden (was)
{
	was=window.document.getElementById(was);
	was.style.visibility="visible";
}
function ausblenden (was)
{
	was=window.document.getElementById(was);
	was.style.visibility="hidden";
}
var id, win, was;
function popup (id,was)
{
	was=was+id;
	win=window.open(was,"Popup","width=575,screenY=50,screenX=100,height=478,scrollbars=no");
}
function popcom (id,was)
{
	was=was+id;
	win=window.open(was,"Comments","width=400,screenY=50,screenX=100,height=330,scrollbars=no");
}
function laden()
{
	window.opener.location="http://www.grabbe-game.de/comments.php";
}

var datum = new Date ("July 20, 2004");

function toSt(n) {
s = ""
if (n < 10) s += "0"
return s + n.toString();
}

function sommerfest() {
/*cl = document.clock;
d = new Date();
count = Math.floor((datum.getTime() - d.getTime()) / 1000);

if (count <= 0) {
cl.days.value = "----";
cl.hours.value = "--";
cl.mins.value = "--";
cl.secs.value = "--";
return;
}

cl.secs.value = toSt(count % 60);
count = Math.floor(count / 60);
cl.mins.value = toSt(count % 60);
count = Math.floor(count / 60);
count+=15;
cl.hours.value = toSt(count % 24);
count = Math.floor(count / 24);
cl.days.value = count;

setTimeout ("sommerfest()", 1000);*/
}