count=Math.random()*13989;
function showKalender()
{
        var popup = window.open('/kalender.php','Kalender','scrollbars=yes,resizable=yes,width=800,height=600');
}

function dateCounter()
{
	document.getElementById('teller').innerHTML='<a href="javascript:var popup=window.open(\'kalender.php?count='+count+'\',\'Kalender\',\'scrollbars=yes,resizable=yes,width=800,height=600\');">'+dateConvertor(count)+'</a>';
	count++;
	if (count > 13989)
		count=0;
}

function dateConvertor(date)
{
	var oDate=new Date();
	oDate.setFullYear(1902, 0, 26);
	oDate.setDate(oDate.getDate()+count);
	return (oDate.getDate()<10?"0":"")+oDate.getDate()+"-"+(1+oDate.getMonth()<10?"0":"")+(1+oDate.getMonth())+"-"+oDate.getFullYear();
}


