function start_time()
{
	time();
	window.setInterval("time()", 1000);
}

function time()
{
	var monate = new Array("", "Januar", "Februar", "M&auml;rz", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember");

	var now = new Date();
	var tag = now.getDate();
	var monat = now.getMonth() + 1;
	var jahr = now.getFullYear();

	var hours = now.getHours();
	var minutes = now.getMinutes();
	var seconds = now.getSeconds();

	thetime = (tag < 10) ? "0" + tag + ".&nbsp;" : tag + ".&nbsp;";
	thetime += monate[monat] + "&nbsp;";
	//thetime += (monate[monat] < 10) ? "0" + monat + "." : monat + ".";
	thetime += jahr + "&nbsp;|&nbsp;";

	thetime += (hours < 10) ? "0" + hours + ":" : hours + ":";
	thetime += (minutes < 10) ? "0" + minutes + ":" : minutes + ":";
	thetime += (seconds < 10) ? "0" + seconds : seconds;

	element = document.getElementById("time");
	element.innerHTML = thetime + "&nbsp;Uhr";
}


function check_del (id) {

	msg = new Array (
		"Sollen die markierten Menueeintraege wirklich geloescht werden?",
		"Soll dieser Umsatz wirklich geloescht werden?"
	);


	var ckd = window.confirm(msg[id]);
	return (ckd);
}
