// JavaScript Document


function changeVideoInfoContent(title, date, description, autor, autorLink)
{
		$("updatePlayerTitle").set('text', title);
		$("updatePlayerDate").set('text', date);
		$("updatePlayerDescription").set('text', description);
		$("updatePlayerAuthor").set('html', 'Af: <a href="mailto:' + autorLink + '">' + autor + '</a>');		
}

