function SELECT_VON()
{
document.write("<select name='VON' size='1' style='font-size: 8pt; font-family: Arial; color: #003366'>")
for (var i=1; i<=100;i++)
{
document.write('<option value="'+i+'">'+GetDatum(i)+'')
}
document.write("</select>")
}
function SELECT_BIS()
{
document.write('<select name="BIS" style="font-size: 8pt; font-family: Arial; color: #003366">')
for (var i=4; i<=120;i++)
{
if (i==14) document.write('<option selected="selected" ');  else document.write('<option ');
document.write('value="'+i+'">'+GetDatum(i)+'')
}
document.write('</select>')
}

function GetDatum(offset)
{ var time = new Date()
time.setTime( time.getTime()+offset*86400000);
tag     = time.getDate();
monat   = time.getMonth()+1;
jahr    = time.getYear() % 100;
if (tag   < 10)   tag   = "0"+tag;
if (monat < 10)   monat = "0"+monat;
if (jahr  < 10)   jahr  = "200"+jahr;
return tag+'.'+monat+'.'+jahr+' '+DatArray[time.getDay()]
}

DatArray = new Array("SO","Mo","Di","Mi","Do","Fr","SA","??" )

