function Opt(Value, Title){document.write("<option value=\""+Value+"\">"+Title+"</option>\n")}

function LMwebVon($von, $view) {
	if($von < 1 | $von > $view | $von == '' ){ $von = 2; }

	for (var i=1; i<=$view;i++){
		if (i==$von) document.write('<option selected ');  else document.write('<option ');
		document.write('value='+i+'>'+GetDatum(i)+'</option>')
	}
}

function LMwebBis($bis, $view){
	if($bis < 1 | $bis > $view | $bis == '' ){ $bis = 36; }

	for (var i=4; i<=$view;i++){
		if (i==$bis) document.write('<option selected ');  else document.write('<option ');
		document.write('value='+i+'>'+GetDatum(i)+'</option>')
	}
}

function GetDatum(offset){
	Days = new Array("So","Mo","Di","Mi","Do","Fr","Sa","??" )
	var time = new Date()
	time.setTime( time.getTime()+offset*86400000)
	return time.getDate()+'.'+(1+time.getMonth())+'.'+(2000+(time.getYear()%100))+' '+Days[time.getDay()]
}