function UpdateInfoBox(teItem)
{
	$('titel').innerHTML=teItem.Titel;
	$('start').innerHTML=teItem.Start;
	$('ende').innerHTML=teItem.Ende;
	$('kategorie').innerHTML=teItem.Kategorie;
	$('trainingsOrt').innerHTML="n/a";
	$('trainer').innerHTML="n/a";
}

function CloseInfoBox()
{
	Element.hide('infoBox');
}

function ShowInfo(day, id)
{
	Element.hide('infoTable');
	Element.show('loading');
	Element.show('infoBox');
	GetTrainingInfo(day, id);
}
